mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 14:40:38 +01:00
Set missing websocket init data
This commit is contained in:
parent
b03f2185ce
commit
565336df21
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ class WebsocketHandler {
|
|||
}
|
||||
|
||||
if (parsedMessage.action === 'init') {
|
||||
if (!this.socketData['blocks']?.length || !this.socketData['da']) {
|
||||
if (!this.socketData['blocks']?.length || !this.socketData['da'] || !this.socketData['backendInfo'] || !this.socketData['conversions']) {
|
||||
this.updateSocketData();
|
||||
}
|
||||
if (!this.socketData['blocks']?.length) {
|
||||
|
|
Loading…
Add table
Reference in a new issue