Revert "Show accelerated fee rates on timeline"

This commit is contained in:
softsimon
2024-07-12 19:10:06 +09:00
committed by GitHub
parent 1b6fd29c82
commit 6cd8cf660b
4 changed files with 112 additions and 118 deletions

View File

@@ -1,7 +1,6 @@
import { Component, Input, OnInit, OnChanges } from '@angular/core';
import { ETA } from '../../services/eta.service';
import { Transaction } from '../../interfaces/electrs.interface';
import { Acceleration } from '../../interfaces/node-api.interface';
@Component({
selector: 'app-acceleration-timeline',
@@ -11,7 +10,6 @@ import { Acceleration } from '../../interfaces/node-api.interface';
export class AccelerationTimelineComponent implements OnInit, OnChanges {
@Input() transactionTime: number;
@Input() tx: Transaction;
@Input() accelerationInfo: Acceleration;
@Input() eta: ETA;
// A mined transaction has standard ETA and accelerated ETA undefined
// A transaction in mempool has either standardETA defined (if accelerated) or acceleratedETA defined (if not accelerated yet)