fixed propagation best block bug

This commit is contained in:
cubedro 2015-04-05 19:30:26 +03:00
parent 4ed81109b4
commit 3d4ef1d0cf
2 changed files with 1 additions and 6 deletions

View File

@ -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;

View File

@ -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;