Merge pull request #201 from cubedro/develop
Set chain debounce timeout to 120ms
This commit is contained in:
commit
9f73b3e942
@ -711,7 +711,7 @@ Node.prototype.setWatches = function()
|
|||||||
this._debouncedChain = debounce(function(hash) {
|
this._debouncedChain = debounce(function(hash) {
|
||||||
console.info('>>>', 'Debounced');
|
console.info('>>>', 'Debounced');
|
||||||
self._latestQueue.push(hash);
|
self._latestQueue.push(hash);
|
||||||
}, self._chan_min_time);
|
}, 120);
|
||||||
|
|
||||||
this._debouncedPending = debounce(function() {
|
this._debouncedPending = debounce(function() {
|
||||||
self.getPending();
|
self.getPending();
|
||||||
|
Loading…
Reference in New Issue
Block a user