fixed chain debounce bug

This commit is contained in:
cubedro 2015-06-02 00:53:56 +03:00
parent 2aeb0d71df
commit 7ea1a3c666

View File

@ -674,7 +674,7 @@ Node.prototype.setWatches = function()
self._chainDebouncer = 0; self._chainDebouncer = 0;
} }
if(this._chainDebouncer < 20) if(self._chainDebouncer < 20)
{ {
self._latestQueue.push(hash); self._latestQueue.push(hash);
} }