fix: if coingecko when no pair returned

fails to return valid pairs, the pairlist should be empty
This commit is contained in:
Matthias
2024-09-28 19:45:01 +02:00
parent 51c596a21f
commit 415b8354f4

View File

@@ -200,4 +200,5 @@ class MarketCapPairList(IPairList):
if len(filtered_pairlist) > 0:
return filtered_pairlist
return pairlist
# If no pairs are found, return the original pairlist
return []