From e3bb812203e317e96aaa9423c742e5da01ea871e Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 28 Jul 2024 14:10:28 -0500 Subject: [PATCH] fixes crash with missing pool partner fixes #5379 --- .../src/app/components/transaction/transaction.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 107e471fc..d15cd3308 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -844,7 +844,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { } if (this.isAcceleration) { // this immediately returns cached stats if we fetched them recently - this.miningService.getMiningStats('1w').subscribe(stats => { + this.miningService.getMiningStats('1m').subscribe(stats => { this.miningStats = stats; this.isAccelerated$.next(this.isAcceleration); // hack to trigger recalculation of ETA without adding another source observable });