From 1f5af33f14a7e50756a0d2fca2710553048e0403 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 15 Dec 2020 03:48:07 +0900 Subject: [PATCH] Add missing websocket subscription for 'blocks' in status-view component --- frontend/src/app/components/status-view/status-view.component.ts | 1 + 1 file changed, 1 insertion(+) 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 dd3eef51f..556e993c8 100644 --- a/frontend/src/app/components/status-view/status-view.component.ts +++ b/frontend/src/app/components/status-view/status-view.component.ts @@ -12,5 +12,6 @@ export class StatusViewComponent implements OnInit { ngOnInit() { this.websocketService.want(['mempool-blocks', 'stats']); + this.websocketService.want(['blocks', 'stats']); } }