From 9f13a4b6b4e4e6126eaafe088f371188e8505010 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Wed, 9 Apr 2025 06:40:40 +0000 Subject: [PATCH] Fix network change bug on stratum pages --- frontend/src/app/services/state.service.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/services/state.service.ts b/frontend/src/app/services/state.service.ts index 7f8f81744..ed9728ec0 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -327,6 +327,8 @@ export class StateService { this.networkChanged$.subscribe((network) => { this.transactions$ = new BehaviorSubject(null); + this.stratumJobs$ = new BehaviorSubject>({}); + this.stratumJobUpdate$.next({ state: {} }); this.blocksSubject$.next([]); });