From fa8b4c642872b1da1193a1a9e20be096e338ca24 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 28 Nov 2016 17:31:21 -0800 Subject: [PATCH] net: remove isBusy check from sendRequests. --- lib/net/pool.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/net/pool.js b/lib/net/pool.js index bbef75a1..811ff318 100644 --- a/lib/net/pool.js +++ b/lib/net/pool.js @@ -1689,9 +1689,6 @@ Pool.prototype.scheduleRequests = co(function* scheduleRequests(peer) { Pool.prototype.sendRequests = function sendRequests(peer) { var i, size, items; - if (this.chain.isBusy()) - return; - if (peer.queueBlock.length === 0) return;