+ repeat the block transaction resync when done

This commit is contained in:
Taegus
2018-12-16 17:45:07 +01:00
parent 554f96387b
commit 6cf294ff73

View File

@@ -156,7 +156,12 @@ $(document).on("onSyncInterval", function() {
// call the next iteration for the next block // call the next iteration for the next block
getNextBlockTransactions(blockNumber + 1 , maxBlock) getNextBlockTransactions(blockNumber + 1 , maxBlock)
} else {
setTimeout(function() {
doSyncRemainingBlocks();
}, 10000);
} }
} }
); );
} }