Don't push full RBF-transactions to prevent old states.

This commit is contained in:
softsimon
2022-03-08 18:54:49 +01:00
parent 0d1d1ab449
commit d265db136b
2 changed files with 4 additions and 12 deletions

View File

@@ -235,7 +235,7 @@ export class TransactionComponent implements OnInit, OnDestroy {
});
this.txReplacedSubscription = this.stateService.txReplaced$.subscribe((rbfTransaction) => {
if (!rbfTransaction.size) {
if (!this.tx) {
this.error = new Error();
this.waitingForTransaction = false;
}