fixed chain debounce bug

This commit is contained in:
cubedro 2015-06-02 00:53:56 +03:00
parent 2aeb0d71df
commit 7ea1a3c666
1 changed files with 1 additions and 1 deletions

View File

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