From 51a64b3d33e7165695e90ec3672a8d0df1965f80 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 18 Oct 2016 18:28:31 -0700 Subject: [PATCH] txdb: minor. --- lib/wallet/txdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet/txdb.js b/lib/wallet/txdb.js index 5080647d..68d81934 100644 --- a/lib/wallet/txdb.js +++ b/lib/wallet/txdb.js @@ -1211,7 +1211,7 @@ TXDB.prototype._unconfirm = co(function* unconfirm(hash) { var tx = yield this.getTX(hash); if (!tx) - return false; + return; return yield this.__unconfirm(tx); });