diff --git a/frontend/src/app/components/rbf-list/rbf-list.component.html b/frontend/src/app/components/rbf-list/rbf-list.component.html
index 5ce6254c4..c3206d37a 100644
--- a/frontend/src/app/components/rbf-list/rbf-list.component.html
+++ b/frontend/src/app/components/rbf-list/rbf-list.component.html
@@ -22,12 +22,12 @@
- Mined
- Full RBF
+ Mined
+ Full RBF
-
@@ -36,11 +36,6 @@
there are no replacements in the mempool yet!
-
-
diff --git a/frontend/src/app/components/rbf-list/rbf-list.component.ts b/frontend/src/app/components/rbf-list/rbf-list.component.ts
index 06f798860..b6e178270 100644
--- a/frontend/src/app/components/rbf-list/rbf-list.component.ts
+++ b/frontend/src/app/components/rbf-list/rbf-list.component.ts
@@ -53,25 +53,6 @@ export class RbfList implements OnInit, OnDestroy {
);
}
- toggleFullRbf(event) {
- this.router.navigate([], {
- relativeTo: this.route,
- fragment: this.fullRbf ? null : 'fullrbf'
- });
- }
-
- isFullRbf(tree: RbfTree): boolean {
- return tree.fullRbf;
- }
-
- isMined(tree: RbfTree): boolean {
- return tree.mined;
- }
-
- // pageChange(page: number) {
- // this.fromTreeSubject.next(this.lastTreeId);
- // }
-
ngOnDestroy(): void {
this.websocketService.stopTrackRbf();
}
diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts
index b1bc35eca..bf9816a69 100644
--- a/frontend/src/app/dashboard/dashboard.component.ts
+++ b/frontend/src/app/dashboard/dashboard.component.ts
@@ -206,16 +206,4 @@ export class DashboardComponent implements OnInit, OnDestroy {
trackByBlock(index: number, block: BlockExtended) {
return block.height;
}
-
- checkFullRbf(tree: RbfTree): void {
- let fullRbf = false;
- for (const replaced of tree.replaces) {
- if (!replaced.tx.rbf) {
- fullRbf = true;
- }
- replaced.replacedBy = tree.tx;
- this.checkFullRbf(replaced);
- }
- tree.tx.fullRbf = fullRbf;
- }
}