From 3da4542ecb80e90300419364d3700dfd3dfdf229 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 5 Jan 2017 14:46:51 -0800 Subject: [PATCH] pool: remove failsafe. --- lib/net/pool.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/net/pool.js b/lib/net/pool.js index 557c71bf..cf86241c 100644 --- a/lib/net/pool.js +++ b/lib/net/pool.js @@ -596,9 +596,6 @@ Pool.prototype.startSync = co(function* startSync() { yield this.connect(); this.syncing = true; - - assert(this.peers.load); - this.sync(); });