From 9b33baa4c1193407bef60ffa6c0a97f078b7b493 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 14 Mar 2020 13:48:01 +0700 Subject: [PATCH] TV view didn't request mempool blocks. --- frontend/src/app/components/television/television.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/television/television.component.ts b/frontend/src/app/components/television/television.component.ts index 7fba0e9b3..e704812f5 100644 --- a/frontend/src/app/components/television/television.component.ts +++ b/frontend/src/app/components/television/television.component.ts @@ -29,7 +29,7 @@ export class TelevisionComponent implements OnInit { ) { } ngOnInit() { - this.websocketService.want(['blocks', 'live-2h-chart']); + this.websocketService.want(['blocks', 'live-2h-chart', 'mempool-blocks']); const labelInterpolationFnc = (value: any, index: any) => { return index % 6 === 0 ? formatDate(value, 'HH:mm', this.locale) : null;