commit
840cb7e478
5
app.js
5
app.js
@ -316,7 +316,8 @@ api.on('connection', function (spark)
|
|||||||
{
|
{
|
||||||
if( !_.isUndefined(data.id) )
|
if( !_.isUndefined(data.id) )
|
||||||
{
|
{
|
||||||
Nodes.updateLatency(data.id, data.latency, function (err, latency) {
|
Nodes.updateLatency(data.id, data.latency, function (err, latency)
|
||||||
|
{
|
||||||
if(err !== null)
|
if(err !== null)
|
||||||
{
|
{
|
||||||
console.error('API', 'PIN', 'Latency error:', err);
|
console.error('API', 'PIN', 'Latency error:', err);
|
||||||
@ -333,7 +334,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 > 2*60*1000) )
|
||||||
{
|
{
|
||||||
var range = Nodes.getHistory().getHistoryRequestRange();
|
var range = Nodes.getHistory().getHistoryRequestRange();
|
||||||
|
|
||||||
|
@ -61,7 +61,6 @@ Collection.prototype.addBlock = function(id, stats, callback)
|
|||||||
|
|
||||||
if (!block)
|
if (!block)
|
||||||
{
|
{
|
||||||
console.log(block);
|
|
||||||
callback('Block undefined', null);
|
callback('Block undefined', null);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -119,7 +118,7 @@ Collection.prototype.addHistory = function(id, blocks, callback)
|
|||||||
this._blockchain.add(blocks[i], id);
|
this._blockchain.add(blocks[i], id);
|
||||||
};
|
};
|
||||||
|
|
||||||
this.getCharts(callback);
|
this.getCharts();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.askedForHistory(false);
|
this.askedForHistory(false);
|
||||||
|
@ -110,14 +110,14 @@ History.prototype.add = function(block, id)
|
|||||||
block.time = 0;
|
block.time = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( this._items.length === 0 || block.number >= (this.bestBlockNumber() - MAX_HISTORY + 1) )
|
|
||||||
{
|
|
||||||
var item = {
|
var item = {
|
||||||
height: block.number,
|
height: block.number,
|
||||||
block: block,
|
block: block,
|
||||||
propagTimes: []
|
propagTimes: []
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( this._items.length === 0 || block.number >= (this.bestBlockNumber() - MAX_HISTORY + 1) )
|
||||||
|
{
|
||||||
item.propagTimes.push({
|
item.propagTimes.push({
|
||||||
node: id,
|
node: id,
|
||||||
received: now,
|
received: now,
|
||||||
|
@ -158,7 +158,6 @@ Node.prototype.setBlock = function(block, history, callback)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
console.log(block);
|
|
||||||
callback('Block undefined', null);
|
callback('Block undefined', null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user