Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 071a636

Browse files
committed
Comments to error hunting
1 parent ad3607e commit 071a636

4 files changed

Lines changed: 5 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,7 @@ I have been largely motivated by the following projects and people:
6161
# Road map
6262

6363
### Notices
64-
Version 0.0.6 will change the names of the unsubscribe methods from:
65-
```
66-
unsubscribe_to_orderbook
67-
unsubscribe_to_orderbook_update
68-
unsubscribe_to_trades
69-
unsubscribe_to_ticker_update
70-
```
71-
to
72-
```
73-
unsubscribe_from_orderbook
74-
unsubscribe_from_orderbook_update
75-
unsubscribe_from_trades
76-
unsubscribe_from_ticker_update
77-
```
64+
None right now.
7865

7966
### Currently in development
8067
* Socket reconnection handling

bittrex_websocket/websocket_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ def _on_tick_update(self, msg):
10401040
self.trades.on_change(d)
10411041
except Exception as e:
10421042
print(e)
1043-
print('Got this exception from on_error. This is bug testing. Please report to '
1043+
print('Got this exception from _on_tick_update. This is bug testing. Please report to '
10441044
'https://github.com/slazarov/python-bittrex-websocket with this message')
10451045

10461046
def _on_ticker_update(self, msg):
@@ -1066,7 +1066,7 @@ def _on_ticker_update(self, msg):
10661066
self.updateSummaryState.on_change(update)
10671067
except Exception as e:
10681068
print(e)
1069-
print('Got this exception from on_error. This is bug testing. Please report to '
1069+
print('Got this exception from _on_ticker_update. This is bug testing. Please report to '
10701070
'https://github.com/slazarov/python-bittrex-websocket with this message')
10711071

10721072
# -------------------------------------

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cfscrape>=1.9.2
1+
cfscrape>=1.9.4
22
signalr-client==0.0.7
33
requests[security]==2.18.4
44
Events==0.3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
install_requires = \
66
[
7-
'cfscrape>=1.9.2',
7+
'cfscrape>=1.9.4',
88
'signalr-client==0.0.7',
99
'requests[security]==2.18.4',
1010
'Events==0.3',

0 commit comments

Comments
 (0)