force refresh is the value has never been set
This commit is contained in:
parent
e10a3d1f9d
commit
165781a545
@ -98,7 +98,7 @@ class Bittrex(Exchange):
|
||||
|
||||
def get_ticker(self, pair: str, refresh: Optional[bool] = True) -> dict:
|
||||
data = _API.get_ticker(pair.replace('_', '-'), refresh)
|
||||
if refresh:
|
||||
if refresh or pair not in self.cached_ticker.keys():
|
||||
if not data['success']:
|
||||
Bittrex._validate_response(data)
|
||||
raise OperationalException('{message} params=({pair})'.format(
|
||||
|
Loading…
Reference in New Issue
Block a user