Skip to content

Commit 66aebfa

Browse files
author
Sam McHardy
authored
Merge pull request sammchardy#844 from bmarengo/bmarengo-patch-1
ThreadedWebsocketManager fix
2 parents 7ca4790 + 8c47a94 commit 66aebfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

binance/streams.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,14 +1196,14 @@ def start_symbol_book_ticker_socket(self, callback: Callable, symbol: str) -> st
11961196
def start_book_ticker_socket(self, callback: Callable) -> str:
11971197
return self._start_async_socket(
11981198
callback=callback,
1199-
socket_name='symbol_book_ticker_socket',
1199+
socket_name='book_ticker_socket',
12001200
params={}
12011201
)
12021202

12031203
def start_multiplex_socket(self, callback: Callable, streams: List[str]) -> str:
12041204
return self._start_async_socket(
12051205
callback=callback,
1206-
socket_name='symbol_book_ticker_socket',
1206+
socket_name='multiplex_socket',
12071207
params={
12081208
'streams': streams
12091209
}

0 commit comments

Comments
 (0)