From 723034b3d3984b91b9054edacc7f7e4ed38f2a70 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 25 Jul 2021 19:43:06 +0300 Subject: [PATCH] Status page wasn't updated due to multiple want events. fixes #658 --- .../src/app/components/status-view/status-view.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/app/components/status-view/status-view.component.ts b/frontend/src/app/components/status-view/status-view.component.ts index 556e993c8..fe35b817b 100644 --- a/frontend/src/app/components/status-view/status-view.component.ts +++ b/frontend/src/app/components/status-view/status-view.component.ts @@ -11,7 +11,6 @@ export class StatusViewComponent implements OnInit { ) { } ngOnInit() { - this.websocketService.want(['mempool-blocks', 'stats']); - this.websocketService.want(['blocks', 'stats']); + this.websocketService.want(['mempool-blocks', 'stats', 'blocks']); } }