Add missing websocket subscription for 'blocks' in status-view component

This commit is contained in:
wiz 2020-12-15 03:48:07 +09:00
parent 8f3901b6d4
commit 1f5af33f14
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -12,5 +12,6 @@ export class StatusViewComponent implements OnInit {
ngOnInit() {
this.websocketService.want(['mempool-blocks', 'stats']);
this.websocketService.want(['blocks', 'stats']);
}
}