Merge pull request #274 from CoinLogik/patch-3
Fixes: you specified keyIsUint32 on the Dbi
This commit is contained in:
commit
ffc6b3dfe6
1 changed files with 2 additions and 2 deletions
|
|
@ -127,7 +127,7 @@ function updateShareStats() {
|
|||
}, function (oldestTime) {
|
||||
height -= 1;
|
||||
loopBreakout += 1;
|
||||
if (loopBreakout > 60) {
|
||||
if (loopBreakout > 60 || height < 0) {
|
||||
return true;
|
||||
}
|
||||
return oldestTime <= identifierTime;
|
||||
|
|
@ -534,4 +534,4 @@ setInterval(updatePoolStats, 5000, 'pps');
|
|||
setInterval(updatePoolStats, 5000, 'solo');
|
||||
setInterval(updatePoolInformation, 5000);
|
||||
setInterval(updateWalletStats, 60000);
|
||||
setInterval(monitorNodes, 300000);
|
||||
setInterval(monitorNodes, 300000);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue