Add missing clock websocket subscriptions

This commit is contained in:
Mononaut
2023-05-12 21:08:12 -06:00
parent dfb6d8bfdd
commit 4318a4280f
2 changed files with 1 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ export class ClockComponent implements OnInit {
ngOnInit(): void {
this.resizeCanvas();
this.websocketService.want(['blocks']);
this.websocketService.want(['blocks', 'stats', 'mempool-blocks']);
this.blocksSubscription = this.stateService.blocks$
.subscribe(([block]) => {