fixed propagation bug
This commit is contained in:
parent
ca513d71dd
commit
97ab08f97b
2
app.js
2
app.js
@ -333,7 +333,7 @@ api.on('connection', function (spark)
|
||||
}
|
||||
});
|
||||
|
||||
if( Nodes.requiresUpdate(data.id) && (!Nodes.askedForHistory() || _.now() - askedForHistoryTime > 200000) )
|
||||
if( Nodes.requiresUpdate(data.id) && (!Nodes.askedForHistory() || _.now() - askedForHistoryTime > 60*1000) )
|
||||
{
|
||||
var range = Nodes.getHistory().getHistoryRequestRange();
|
||||
|
||||
|
@ -61,7 +61,6 @@ Collection.prototype.addBlock = function(id, stats, callback)
|
||||
|
||||
if (!block)
|
||||
{
|
||||
console.log(block);
|
||||
callback('Block undefined', null);
|
||||
}
|
||||
else
|
||||
|
@ -110,14 +110,14 @@ History.prototype.add = function(block, id)
|
||||
block.time = 0;
|
||||
}
|
||||
|
||||
if( this._items.length === 0 || block.number >= (this.bestBlockNumber() - MAX_HISTORY + 1) )
|
||||
{
|
||||
var item = {
|
||||
height: block.number,
|
||||
block: block,
|
||||
propagTimes: []
|
||||
}
|
||||
|
||||
if( this._items.length === 0 || block.number >= (this.bestBlockNumber() - MAX_HISTORY + 1) )
|
||||
{
|
||||
item.propagTimes.push({
|
||||
node: id,
|
||||
received: now,
|
||||
|
@ -158,7 +158,6 @@ Node.prototype.setBlock = function(block, history, callback)
|
||||
}
|
||||
else
|
||||
{
|
||||
console.log(block);
|
||||
callback('Block undefined', null);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user