txdb: minor.

This commit is contained in:
Christopher Jeffrey 2016-10-18 18:28:31 -07:00
parent e35f4aa186
commit 51a64b3d33
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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);
});