From 65125f7b4f5dcfea76eb10d82f4e5dcc8059e1f7 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 19 May 2016 12:00:25 -0700 Subject: [PATCH] minor. --- lib/bcoin/pool.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/bcoin/pool.js b/lib/bcoin/pool.js index 51d4d3d1..4a401999 100644 --- a/lib/bcoin/pool.js +++ b/lib/bcoin/pool.js @@ -178,13 +178,6 @@ function Pool(options) { activeTX: 0 }; - this.validate = { - // 5 days scan delta for obtaining TXs - delta: 5 * 24 * 3600, - // getTX map - map: {} - }; - // Currently broadcasted objects this.inv = { list: [], @@ -1650,7 +1643,7 @@ Pool.prototype.broadcast = function broadcast(msg, callback) { var item = this.inv.map[hash]; if (item) { - item.refresh(msg); + item.refresh(); item.addCallback(callback); return item; }