From 5fd23b6901b63aefb95158e147db71b1fc19facc Mon Sep 17 00:00:00 2001 From: Patrick Nagurny Date: Mon, 6 Jul 2015 15:35:14 -0400 Subject: [PATCH] After done RPC syncing, enable inv handling --- lib/node.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node.js b/lib/node.js index a81da25b..41445051 100644 --- a/lib/node.js +++ b/lib/node.js @@ -249,6 +249,7 @@ BitcoreNode.prototype._rpcFetch = function() { if(self.reportedMaxHeight === self.getCurrentHeight()) { // We are synced self.syncStrategy = 'p2p'; + self.networkMonitor.ignoreInv = false; return; } self._rpcFetch();