Skip to content

Commit c573189

Browse files
committed
Typo
1 parent 62e00a1 commit c573189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

async_substrate_interface/async_substrate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ async def _recv(self) -> None:
622622
recd = await self.ws.recv(decode=False)
623623
if self._log_raw_websockets:
624624
raw_websocket_logger.debug(f"WEBSOCKET_RECEIVE> {recd.decode()}")
625-
response = json.loads()
625+
response = json.loads(recd)
626626
self.last_received = await self.loop_time()
627627
async with self._lock:
628628
# note that these 'subscriptions' are all waiting sent messages which have not received

0 commit comments

Comments
 (0)