Fix pairlists to use market_is_active() instead of custom check

This commit is contained in:
hroff-1902 2019-10-17 19:06:58 +03:00
parent 84ba431d10
commit 033742b708

View File

@ -8,6 +8,9 @@ import logging
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from typing import List from typing import List
from freqtrade.exchange import market_is_active
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@ -77,7 +80,7 @@ class IPairList(ABC):
continue continue
# Check if market is active # Check if market is active
market = markets[pair] market = markets[pair]
if not market['active']: if not market_is_active(market):
logger.info(f"Ignoring {pair} from whitelist. Market is not active.") logger.info(f"Ignoring {pair} from whitelist. Market is not active.")
continue continue
sanitized_whitelist.add(pair) sanitized_whitelist.add(pair)