From d088412380f4cbedae2105ec83ec0e2a24e0530e Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 9 Nov 2016 18:45:26 -0800 Subject: [PATCH] walletdb: filter watch logs. --- lib/wallet/walletdb.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/wallet/walletdb.js b/lib/wallet/walletdb.js index 581c150f..59841d4d 100644 --- a/lib/wallet/walletdb.js +++ b/lib/wallet/walletdb.js @@ -296,7 +296,8 @@ WalletDB.prototype.watch = co(function* watch() { chunks.push(outpoint.toRaw()); } - this.logger.info('Adding %d chunks to WalletDB filter.', chunks.length); + this.logger.info('Adding %d hashes to WalletDB filter.', hashes.length); + this.logger.info('Adding %d outpoints to WalletDB filter.', outpoints.length); this.addFilter(chunks); });