From 87c90de571788785aaf5ec78c75d2da5a7a3a1c6 Mon Sep 17 00:00:00 2001 From: cubedro Date: Mon, 4 May 2015 18:38:03 +0300 Subject: [PATCH] fixed timestamp diff --- lib/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node.js b/lib/node.js index fe64ceb..8e8c202 100644 --- a/lib/node.js +++ b/lib/node.js @@ -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)