mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 02:33:55 +00:00
really fixing
This commit is contained in:
parent
90d3c09536
commit
5f696a0cce
|
@ -97,8 +97,8 @@ class Bittrex(Exchange):
|
||||||
return data['result']
|
return data['result']
|
||||||
|
|
||||||
def get_ticker(self, pair: str, refresh: Optional[bool] = True) -> dict:
|
def get_ticker(self, pair: str, refresh: Optional[bool] = True) -> dict:
|
||||||
data = _API.get_ticker(pair.replace('_', '-'))
|
|
||||||
if refresh or pair not in self.cached_ticker.keys():
|
if refresh or pair not in self.cached_ticker.keys():
|
||||||
|
data = _API.get_ticker(pair.replace('_', '-'))
|
||||||
if not data['success']:
|
if not data['success']:
|
||||||
Bittrex._validate_response(data)
|
Bittrex._validate_response(data)
|
||||||
raise OperationalException('{message} params=({pair})'.format(
|
raise OperationalException('{message} params=({pair})'.format(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user