diff --git a/frontend/src/app/components/clock-face/clock-face.component.ts b/frontend/src/app/components/clock-face/clock-face.component.ts index 01e439e8e..c2c946b74 100644 --- a/frontend/src/app/components/clock-face/clock-face.component.ts +++ b/frontend/src/app/components/clock-face/clock-face.component.ts @@ -26,7 +26,6 @@ export class ClockFaceComponent implements OnInit, OnChanges, OnDestroy { constructor( public stateService: StateService, - private websocketService: WebsocketService, private cd: ChangeDetectorRef ) { this.updateTime(); diff --git a/frontend/src/app/components/clock/clock.component.ts b/frontend/src/app/components/clock/clock.component.ts index dea2de4c8..285f91ff8 100644 --- a/frontend/src/app/components/clock/clock.component.ts +++ b/frontend/src/app/components/clock/clock.component.ts @@ -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]) => {