From ae41e11ff3bc555ce42eb7eaa3450774128ce4f3 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 23 May 2016 03:54:15 -0700 Subject: [PATCH] do not ignore old orphans. --- lib/bcoin/pool.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/bcoin/pool.js b/lib/bcoin/pool.js index e0e1c6f1..d69111e1 100644 --- a/lib/bcoin/pool.js +++ b/lib/bcoin/pool.js @@ -271,9 +271,6 @@ Pool.prototype._init = function _init() { var i; if (this.mempool) { - this.mempool.on('remove orphan', function(tx) { - self.rejects.add(tx.hash()); - }); this.mempool.on('bad orphan', function(tx) { self.rejects.add(tx.hash()); });