Removed subscription to 'inv' events

This commit is contained in:
Ivan Socolsky 2014-10-07 15:46:05 -03:00
parent d6e4ab62e5
commit 7173230d1a
1 changed files with 1 additions and 2 deletions

View File

@ -59,7 +59,6 @@ Insight.prototype.subscribeToBlocks = function() {
if (this.listeningBlocks || !socket.connected) return;
var self = this;
socket.emit('subscribe', 'inv');
socket.on('block', function(blockHash) {
self.emit('block', blockHash);
});
@ -198,7 +197,7 @@ Insight.prototype.broadcast = function(rawtx, cb) {
rawtx: rawtx
}, function(err, res, body) {
if (err || res.status != 200) cb(err || res);
cb(null, body ? body.txid: null);
cb(null, body ? body.txid : null);
});
};