Fix network change bug on stratum pages

This commit is contained in:
Mononaut
2025-04-09 06:40:40 +00:00
parent 1786ccfdd4
commit 9f13a4b6b4

View File

@@ -327,6 +327,8 @@ export class StateService {
this.networkChanged$.subscribe((network) => {
this.transactions$ = new BehaviorSubject<TransactionStripped[]>(null);
this.stratumJobs$ = new BehaviorSubject<Record<string, StratumJob>>({});
this.stratumJobUpdate$.next({ state: {} });
this.blocksSubject$.next([]);
});