Improve resiliance against invalid data

closes #7947
This commit is contained in:
Matthias 2022-12-28 15:30:57 +01:00
parent 4d112def17
commit c52910f28b
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class VolumePairList(IPairList):
filtered_tickers = [
v for k, v in tickers.items()
if (self._exchange.get_pair_quote_currency(k) == self._stake_currency
and (self._use_range or v[self._sort_key] is not None)
and (self._use_range or v.get(self._sort_key) is not None)
and v['symbol'] in _pairlist)]
pairlist = [s['symbol'] for s in filtered_tickers]
else: