diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html
index ec06dd5ad..abaeaeb06 100644
--- a/frontend/src/app/components/transaction/transaction.component.html
+++ b/frontend/src/app/components/transaction/transaction.component.html
@@ -169,7 +169,7 @@
Acceleration Timeline
-
+
diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts
index 1306c432d..5fb9e5921 100644
--- a/frontend/src/app/components/transaction/transaction.component.ts
+++ b/frontend/src/app/components/transaction/transaction.component.ts
@@ -119,7 +119,6 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
txChanged$ = new BehaviorSubject(false); // triggered whenever this.tx changes (long term, we should refactor to make this.tx an observable itself)
isAccelerated$ = new BehaviorSubject(false); // refactor this to make isAccelerated an observable itself
ETA$: Observable;
- standardETA$: Observable;
isCached: boolean = false;
now = Date.now();
da$: Observable;
@@ -883,21 +882,6 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
this.miningStats = stats;
this.isAccelerated$.next(this.isAcceleration); // hack to trigger recalculation of ETA without adding another source observable
});
- if (!this.tx.status?.confirmed) {
- this.standardETA$ = combineLatest([
- this.stateService.mempoolBlocks$.pipe(startWith(null)),
- this.stateService.difficultyAdjustment$.pipe(startWith(null)),
- ]).pipe(
- map(([mempoolBlocks, da]) => {
- return this.etaService.calculateUnacceleratedETA(
- this.tx,
- mempoolBlocks,
- da,
- this.cpfpInfo,
- );
- })
- )
- }
}
this.isAccelerated$.next(this.isAcceleration);
}