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

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)