fixed double =

This commit is contained in:
cubedro 2015-03-27 14:19:36 +02:00
parent 2ddaf5e6ad
commit 79e6e82c4c
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ Node.prototype.setStats = function(stats)
if(typeof stats !== 'undefined' && typeof stats.block !== 'undefined' && typeof stats.block.number !== 'undefined')
{
if(stats.block.number !== this.stats.number) {
stats.block.received == (new Date()).getTime() - stats.block.arrival;
stats.block.received = (new Date()).getTime() - stats.block.arrival;
} else {
stats.block.received = this.stats.block.received;
}