Merge pull request #103 from cubedro/develop

Fixed timestamp diff
This commit is contained in:
Marian OANCΞA 2015-05-04 18:38:18 +03:00
commit 6453984bfd
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ Node.prototype.getStats = function()
var end = _.now();
console.log('==> end: ', end);
console.log('==> stats diff: ', (start - end));
console.log('==> stats diff: ', (end - start));
}
Node.prototype.getHistory = function(range)