From 43b2fe2f9a503958a692f3ba1cf8d9f74521419d Mon Sep 17 00:00:00 2001 From: Mononaut Date: Mon, 6 Mar 2023 00:19:12 -0600 Subject: [PATCH] don't cache tx data for rbf replacements --- frontend/src/app/components/transaction/transaction.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 4fedc3912..b416dce04 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -362,7 +362,6 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { this.waitingForTransaction = false; } this.rbfTransaction = rbfTransaction; - this.cacheService.setTxCache([this.rbfTransaction]); this.replaced = true; if (rbfTransaction && !this.tx) { this.fetchCachedTx$.next(this.txId);