Merge pull request #1135 from freqtrade/fix/rpc_balance_vtho

Fix /balance rpc call if coin is not properly listed
This commit is contained in:
Samuel Husso
2018-08-22 07:01:40 +03:00
committed by GitHub
3 changed files with 17 additions and 9 deletions

View File

@@ -322,7 +322,7 @@ class Exchange(object):
return data
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
raise TemporaryError(
f'Could not load ticker history due to {e.__class__.__name__}. Message: {e}')
f'Could not load ticker due to {e.__class__.__name__}. Message: {e}')
except ccxt.BaseError as e:
raise OperationalException(e)
else: