minor bugfixes

This commit is contained in:
Manuel Araoz 2014-02-14 16:49:22 -03:00
parent 5c9c7aeb5c
commit aae1db2071
4 changed files with 7 additions and 16 deletions

View File

@ -11,6 +11,7 @@ function spec() {
var networks = require('bitcore/networks');
var peerdb_fn = 'peerdb.json';
function PeerSync() {}
@ -51,10 +52,6 @@ function spec() {
PeerSync.prototype.handleInv = function(info) {
var invs = info.message.invs;
invs.forEach(function(inv) {
console.log('[p2p_sync] Handle inv for a ' + CoinConst.MSG.to_str(inv.type));
});
// TODO: should limit the invs to objects we haven't seen yet
info.conn.sendGetData(invs);
};
@ -132,4 +129,3 @@ function spec() {
}
module.defineClass(spec);

View File

@ -257,11 +257,6 @@ function spec() {
);
};
Sync.prototype._handleBroadcast = function() {
var self = this;
console.log('broadcast:' + self.opts.shouldBroadcast);
};
Sync.prototype.handleTxForAddress = function(data) {
if (this.opts.shouldBroadcast) {
@ -271,7 +266,7 @@ function spec() {
Sync.prototype.handleNewTx = function(data) {
if (this.opts.shouldBroadcast) {
sockets.broadcastTx(data.txid);
sockets.broadcastTx(data.tx);
}
};

View File

@ -595,7 +595,7 @@ function spec(b) {
});
}
self.emit('new_tx', {
txid: tx.txid
tx: tx
});
return cb(err);