Chnaged ui to pull from p2p for txs and not the mempool service.

This commit is contained in:
Chris Kleeschulte 2017-09-25 16:18:17 -04:00
parent f48bf8f246
commit e31ec2f276
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F

View File

@ -104,8 +104,8 @@ InsightAPI.prototype.start = function(callback) {
this._bus.on('block/block', this.transactionEventHandler.bind(this));
this._bus.subscribe('block/block');
this._bus.on('mempool/transaction', this.blockEventHandler.bind(this));
this._bus.subscribe('mempool/transaction');
this._bus.on('p2p/transaction', this.blockEventHandler.bind(this));
this._bus.subscribe('p2p/transaction');
callback();