diff --git a/lib/bcoin/pool.js b/lib/bcoin/pool.js index b6952029..b80a9ed6 100644 --- a/lib/bcoin/pool.js +++ b/lib/bcoin/pool.js @@ -830,6 +830,12 @@ Pool.prototype._createPeer = function _createPeer(backoff, priority) { peer.on('txs', function(txs) { self.emit('txs', txs, peer); + peer.getData(txs.map(function(hash) { + return { + type: 'tx', + hash: hash + }; + })); }); peer.on('version', function(version) {