txdb: fix txdb.confirm.

This commit is contained in:
Christopher Jeffrey 2016-11-23 00:36:57 -08:00
parent 229be344fc
commit 9e48947d2f
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -1209,7 +1209,7 @@ TXDB.prototype.confirm = co(function* confirm(hash, block) {
assert(block);
tx.height = block.height;
tx.block = block.block;
tx.block = block.hash;
tx.ts = block.ts;
this.start();