Skip to content

Commit 7d8c5b4

Browse files
committed
WIP check-in
1 parent 14faed1 commit 7d8c5b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

async_substrate_interface/async_substrate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ async def _start_sending(self, ws) -> Exception:
696696
while True:
697697
to_send = await self._sending.get()
698698
if self._log_raw_websockets:
699-
raw_websocket_logger.debug(f"WEBSOCKET_SEND> {to_send}}")
699+
raw_websocket_logger.debug(f"WEBSOCKET_SEND> {to_send}")
700700
await ws.send(json.dumps(to_send))
701701
self.last_sent = await self.loop_time()
702702
except Exception as e:
@@ -2273,7 +2273,7 @@ async def _make_rpc_request(
22732273

22742274
async with self.ws as ws:
22752275
for payload in payloads:
2276-
item_id = await ws.send(payload)
2276+
item_id = await ws.send(payload["payload"])
22772277
request_manager.add_request(item_id, payload["id"])
22782278

22792279
while True:

0 commit comments

Comments
 (0)