From a06eec29860de94638fb14317e7f32e36dbb8b72 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sat, 16 Apr 2016 20:59:57 -0700 Subject: [PATCH] do not dump walletdb. --- test/wallet-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/wallet-test.js b/test/wallet-test.js index 080e064c..d1ad3f0e 100644 --- a/test/wallet-test.js +++ b/test/wallet-test.js @@ -558,7 +558,7 @@ describe('Wallet', function() { it('should have gratuitous dump', function(cb) { bcoin.walletdb().dump(function(err, records) { assert.noError(err); - console.log(records); + // console.log(records); setTimeout(cb, 200); }); });