Don't use markets[pair]['quote']

This commit is contained in:
Matthias
2020-02-26 07:08:09 +01:00
parent 1021ffa1c3
commit 4e218be51d
3 changed files with 4 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ class IPairList(ABC):
f"{self._exchange.name}. Removing it from whitelist..")
continue
if markets[pair]['quote'] != self._config['stake_currency']:
if self._exchange.get_pair_quote_currency(pair) != self._config['stake_currency']:
logger.warning(f"Pair {pair} is not compatible with your stake currency "
f"{self._config['stake_currency']}. Removing it from whitelist..")
continue