From 73262b74ba0622e425e40a73eaa7f9562abcb264 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sat, 2 Jan 2016 05:19:19 -0800 Subject: [PATCH] pool.searchWallet failsafe for fullnode. --- lib/bcoin/pool.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/bcoin/pool.js b/lib/bcoin/pool.js index 4ba71931..120bf678 100644 --- a/lib/bcoin/pool.js +++ b/lib/bcoin/pool.js @@ -803,6 +803,9 @@ Pool.prototype.searchWallet = function(w) { var self = this; var ts; + if (this.options.fullNode) + return; + if (!w) { ts = this.wallets.reduce(function(ts, w) { if (w.lastTs < ts)