diff --git a/lib/node.js b/lib/node.js index a018746..4ed331e 100644 --- a/lib/node.js +++ b/lib/node.js @@ -714,14 +714,14 @@ Node.prototype.setWatches = function() console.info('>>>', 'Chain Filter triggered: ', chalk.reset.red(hash), '- last trigger:', chalk.reset.cyan(time)); - if(time < 5) + if(time < 50) { self._chainDebouncer++; } else { self._chainDebouncer = 0; } - if(self._chainDebouncer < 20) + if(self._chainDebouncer < 10) { self._latestQueue.push(hash); } @@ -730,7 +730,7 @@ Node.prototype.setWatches = function() debounce(function() { self._latestQueue.push(hash); self._chainDebouncer = 0; - }, 5); + }, 50); } });