Removed retrieving the mempool right after sync. Need to re-think this.

This commit is contained in:
Chris Kleeschulte 2017-11-02 13:46:26 -04:00
parent e292697a24
commit b9887492bf
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F

View File

@ -142,8 +142,6 @@ MempoolService.prototype._startSubscriptions = function() {
MempoolService.prototype.enable = function() {
log.info('Mempool Service: Mempool enabled.');
this._startSubscriptions();
log.info('Mempool Service: Geting mempool from peer.');
this._p2p.getMempool();
this._enabled = true;
};