From fcc468fb3c55b0816f6c70ad25ddd7b9ddda38f8 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 16 Jun 2017 23:47:04 -0700 Subject: [PATCH] txdb: fix txid() call. --- 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 21fb38f7..3c224e81 100644 --- a/lib/wallet/txdb.js +++ b/lib/wallet/txdb.js @@ -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);