diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index 609b2da9a..590fbc57d 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -389,8 +389,6 @@ class Blocks { // use it for the mining pages, and mining pages should not be available if indexing is turned off. // I'll need to fix it before we refactor the block(s) related pages try { - loadingIndicators.setProgress('blocks', 0); - let currentHeight = fromHeight !== undefined ? fromHeight : this.getCurrentBlockHeight(); const returnBlocks: BlockExtended[] = []; @@ -417,13 +415,11 @@ class Blocks { } returnBlocks.push(block); nextHash = block.previousblockhash; - loadingIndicators.setProgress('blocks', i / 10 * 100); currentHeight--; } return returnBlocks; } catch (e) { - loadingIndicators.setProgress('blocks', 100); throw e; } }