File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
async_substrate_interface Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## 1.5.4 /2025-09-23
3
+ * Raw Websocket Logger Inconsistency Fix by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/188
4
+
5
+ ** Full Changelog** : https://github.com/opentensor/async-substrate-interface/compare/v1.5.3...v1.5.4
6
+
2
7
## 1.5.3 /2025-09-16
3
8
* edge case query map keys by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/186
4
9
Original file line number Diff line number Diff line change @@ -1899,10 +1899,10 @@ def _make_rpc_request(
1899
1899
ws = self .connect (init = False if attempt == 1 else True )
1900
1900
for payload in payloads :
1901
1901
item_id = get_next_id ()
1902
- to_send = {** payload ["payload" ], ** {"id" : item_id }}
1902
+ to_send = json . dumps ( {** payload ["payload" ], ** {"id" : item_id }})
1903
1903
if self .log_raw_websockets :
1904
1904
raw_websocket_logger .debug (f"WEBSOCKET_SEND> { to_send } " )
1905
- ws .send (json . dumps ( to_send ) )
1905
+ ws .send (to_send )
1906
1906
request_manager .add_request (item_id , payload ["id" ])
1907
1907
logger .debug (
1908
1908
f"Submitted payload ID { payload ['id' ]} with websocket ID { item_id } : { payload } "
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " async-substrate-interface"
3
- version = " 1.5.3 "
3
+ version = " 1.5.4 "
4
4
description = " Asyncio library for interacting with substrate. Mostly API-compatible with py-substrate-interface"
5
5
readme = " README.md"
6
6
license = { file = " LICENSE" }
You can’t perform that action at this time.
0 commit comments