From 7ea1a3c6664ee9fc9e3801272a7ded3b5fdb2047 Mon Sep 17 00:00:00 2001 From: cubedro Date: Tue, 2 Jun 2015 00:53:56 +0300 Subject: [PATCH] fixed chain debounce bug --- lib/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node.js b/lib/node.js index f11cee6..fa8686e 100644 --- a/lib/node.js +++ b/lib/node.js @@ -674,7 +674,7 @@ Node.prototype.setWatches = function() self._chainDebouncer = 0; } - if(this._chainDebouncer < 20) + if(self._chainDebouncer < 20) { self._latestQueue.push(hash); }