From 3fc7272780cab7ed597923be1e1b798deb24366b Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 29 Jan 2016 12:46:25 -0800 Subject: [PATCH] fix typo. --- lib/bcoin/pool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bcoin/pool.js b/lib/bcoin/pool.js index 04a08ad4..b6952029 100644 --- a/lib/bcoin/pool.js +++ b/lib/bcoin/pool.js @@ -769,7 +769,7 @@ Pool.prototype._load = function _load() { }; Pool.prototype.loadMempool = function loadMempool() { - this.pool.peers.block.forEach(function(peer) { + this.peers.block.forEach(function(peer) { peer.loadMempool(); }); };