Merge pull request #1877 from mempool/nymkappa/bugfix/da-mining-dashboard

Listen for `stats` websocket event in the mining dashboard to get latest DA
This commit is contained in:
wiz 2022-06-14 08:30:37 +09:00 committed by GitHub
commit dc475462d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,6 @@ export class MiningDashboardComponent implements OnInit {
}
ngOnInit(): void {
this.websocketService.want(['blocks', 'mempool-blocks']);
this.websocketService.want(['blocks', 'mempool-blocks', 'stats']);
}
}