diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html
index ecd00e599..2ae6c8df8 100644
--- a/frontend/src/app/components/transaction/transaction.component.html
+++ b/frontend/src/app/components/transaction/transaction.component.html
@@ -606,16 +606,15 @@
@if (!isLoadingTx) {
Fee |
- {{ tx.fee | number }} sat
- @if (accelerationInfo?.bidBoost) {
- +{{ accelerationInfo.bidBoost | number }} sat
-
- } @else if (tx.feeDelta && !accelerationInfo) {
- +{{ tx.feeDelta | number }} sat
-
- } @else {
-
- }
+ | {{ tx.fee | number }} sat
+
+ @if (accelerationInfo?.bidBoost) {
+ +{{ accelerationInfo.bidBoost | number }} sat
+ } @else if (tx.feeDelta) {
+ +{{ tx.feeDelta | number }} sat
+ }
+
+
|
} @else {
diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts
index 01bbcb6f4..637aa52e3 100644
--- a/frontend/src/app/components/transaction/transaction.component.ts
+++ b/frontend/src/app/components/transaction/transaction.component.ts
@@ -358,12 +358,14 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
}),
).subscribe((accelerationHistory) => {
for (const acceleration of accelerationHistory) {
- if (acceleration.txid === this.txId && (acceleration.status === 'completed' || acceleration.status === 'completed_provisional') && acceleration.pools.includes(acceleration.minedByPoolUniqueId)) {
- const boostCost = acceleration.boostCost || acceleration.bidBoost;
- acceleration.acceleratedFeeRate = Math.max(acceleration.effectiveFee, acceleration.effectiveFee + boostCost) / acceleration.effectiveVsize;
- acceleration.boost = boostCost;
- this.tx.acceleratedAt = acceleration.added;
- this.accelerationInfo = acceleration;
+ if (acceleration.txid === this.txId) {
+ if ((acceleration.status === 'completed' || acceleration.status === 'completed_provisional') && acceleration.pools.includes(acceleration.minedByPoolUniqueId)) {
+ const boostCost = acceleration.boostCost || acceleration.bidBoost;
+ acceleration.acceleratedFeeRate = Math.max(acceleration.effectiveFee, acceleration.effectiveFee + boostCost) / acceleration.effectiveVsize;
+ acceleration.boost = boostCost;
+ this.tx.acceleratedAt = acceleration.added;
+ this.accelerationInfo = acceleration;
+ }
this.waitingForAccelerationInfo = false;
this.setIsAccelerated();
}