We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e00a1 commit c573189Copy full SHA for c573189
async_substrate_interface/async_substrate.py
@@ -622,7 +622,7 @@ async def _recv(self) -> None:
622
recd = await self.ws.recv(decode=False)
623
if self._log_raw_websockets:
624
raw_websocket_logger.debug(f"WEBSOCKET_RECEIVE> {recd.decode()}")
625
- response = json.loads()
+ response = json.loads(recd)
626
self.last_received = await self.loop_time()
627
async with self._lock:
628
# note that these 'subscriptions' are all waiting sent messages which have not received
0 commit comments