fixed propagation best block bug
This commit is contained in:
parent
4ed81109b4
commit
3d4ef1d0cf
@ -38,7 +38,7 @@ Collection.prototype.update = function(id, stats)
|
||||
{
|
||||
stats.block.received = (new Date()).getTime();
|
||||
|
||||
if(this._bestBlock.number < oldStats.stats.block.number)
|
||||
if(this._bestBlock.number < stats.block.number)
|
||||
{
|
||||
stats.block.propagation = 0;
|
||||
this._bestBlock = stats.block;
|
||||
|
@ -90,11 +90,6 @@ Node.prototype.setStats = function(stats)
|
||||
{
|
||||
if(typeof stats !== 'undefined' && typeof stats.block !== 'undefined' && typeof stats.block.number !== 'undefined')
|
||||
{
|
||||
// if(stats.block.number !== this.stats.block.number) {
|
||||
// stats.block.received = (new Date()).getTime();
|
||||
// } else {
|
||||
// stats.block.received = this.stats.block.received;
|
||||
// }
|
||||
stats.block.hash = stats.block.hash.replace('0x', '');
|
||||
|
||||
this.stats = stats;
|
||||
|
Loading…
Reference in New Issue
Block a user