From 3c022ad755ba0659fa2abbffdbbdf3dc968ba223 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Wed, 7 Jun 2023 11:59:31 -0400 Subject: [PATCH] Fix fee range inconsistencies --- backend/src/api/blocks.ts | 7 +++++-- frontend/src/app/components/block/block.component.html | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index 9e56db027..d5058b149 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -645,9 +645,12 @@ class Blocks { logger.info(`Re-indexed 10 blocks and summaries. Also re-indexed the last difficulty adjustments. Will re-index latest hashrates in a few seconds.`, logger.tags.mining); indexer.reindex(); } - await blocksRepository.$saveBlockInDatabase(blockExtended); - this.updateTimerProgress(timer, `saved ${this.currentBlockHeight} to database`); + } + await blocksRepository.$saveBlockInDatabase(blockExtended); + this.updateTimerProgress(timer, `saved ${this.currentBlockHeight} to database`); + + if (!fastForwarded) { const lastestPriceId = await PricesRepository.$getLatestPriceId(); this.updateTimerProgress(timer, `got latest price id ${this.currentBlockHeight}`); if (priceUpdater.historyInserted === true && lastestPriceId !== null) { diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index c34a3e523..4c7e4684a 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -121,7 +121,7 @@ Fee span - {{ block.extras.feeRange[1] | number:'1.0-0' }} - {{ block.extras.feeRange[block.extras.feeRange.length - 1] | number:'1.0-0' }} sat/vB + {{ block.extras.feeRange[0] | number:'1.0-0' }} - {{ block.extras.feeRange[block.extras.feeRange.length - 1] | number:'1.0-0' }} sat/vB Median fee