Skip to content

Commit 8570743

Browse files
websockets10 support for binance futures
1 parent c17b217 commit 8570743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1313
### Changed
1414
- Logging of `restclient._request()`
1515
### Fixed
16-
- No data received from binance.com-futures if websockets==10.0 [issue#199](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/issues/199)
16+
- No data received from binance.com-futures with websockets==10.0 [issue#199](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/issues/199)
1717

1818
## 1.34.0
1919
### Changed

unicorn_binance_websocket_api/unicorn_binance_websocket_api_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async def __aenter__(self):
124124
+ str(error_msg))
125125

126126
# the lib websockets is supporting a new feature that is not support by all endpoints so we have to disable it
127-
# non supporting exchanges with `compression=None`:
127+
# for non supporting exchanges with `compression=None`:
128128
# https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/issues/199
129129
if self.manager.exchange == "binance.com-futures":
130130
self._conn = connect(uri,

0 commit comments

Comments
 (0)