txdb: fix txid() call.

This commit is contained in:
Christopher Jeffrey 2017-06-16 23:47:04 -07:00
parent 7c1786d584
commit fcc468fb3c
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -2591,7 +2591,7 @@ TXDB.prototype.zap = co(function* zap(account, age) {
assert(now - wtx.ps >= age);
this.logger.debug('Zapping TX: %s (%s)',
wtx.txid(), this.wallet.id);
wtx.tx.txid(), this.wallet.id);
yield this.remove(wtx.hash);