diff --git a/renderer/transactions.js b/renderer/transactions.js index 07b44d3..5e12fa8 100644 --- a/renderer/transactions.js +++ b/renderer/transactions.js @@ -156,7 +156,12 @@ $(document).on("onSyncInterval", function() { // call the next iteration for the next block getNextBlockTransactions(blockNumber + 1 , maxBlock) + } else { + setTimeout(function() { + doSyncRemainingBlocks(); + }, 10000); } + } ); }