From d571825460e142c614b7cbe17d4b4e4e16d9e998 Mon Sep 17 00:00:00 2001 From: cubedro Date: Wed, 24 Jun 2015 03:26:18 +0300 Subject: [PATCH] set chain debounce timeout to 120ms --- lib/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node.js b/lib/node.js index 2ca149f..1bce826 100644 --- a/lib/node.js +++ b/lib/node.js @@ -711,7 +711,7 @@ Node.prototype.setWatches = function() this._debouncedChain = debounce(function(hash) { console.info('>>>', 'Debounced'); self._latestQueue.push(hash); - }, self._chan_min_time); + }, 120); this._debouncedPending = debounce(function() { self.getPending();