Merge pull request #29 from cubedro/develop

fixed received bug
This commit is contained in:
Marian OANCΞA 2015-03-27 13:45:06 +02:00
commit 51cae6fdb8
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ Node.prototype.getInfo = function()
Node.prototype.setStats = function(stats)
{
if(typeof stats !== undefined && typeof stats.block !== undefined && typeof stats.block.number !== undefined)
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;