From 7ebe1b8c148699c1412570bcb4982c5f561255a8 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 15 Sep 2024 11:02:49 +0200 Subject: [PATCH] chore: remove pointless validation pairs are validated through expand_pairlist. If they're not in markets, they'll no longer be in the pairlist once this function function is hit. --- freqtrade/data/history/history_utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index bbc9ec4d7..9deab401e 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -610,9 +610,6 @@ def download_data_main(config: Config) -> None: if "timeframes" not in config: config["timeframes"] = DL_DATA_TIMEFRAMES - # Manual validations of relevant settings - if not config["exchange"].get("skip_pair_validation", False): - exchange.validate_pairs(expanded_pairs) logger.info( f"About to download pairs: {expanded_pairs}, " f"intervals: {config['timeframes']} to {config['datadir']}"