Reimplement adjustment of ccxt 'has' with more generic ccxt_config class attribute

This commit is contained in:
hroff-1902
2019-11-13 20:22:23 +03:00
parent e26bbc7de8
commit 6174a5dd55
2 changed files with 14 additions and 10 deletions

View File

@@ -17,5 +17,6 @@ class Bibox(Exchange):
may still not work as expected.
"""
# Adjust ccxt exchange API metadata info
_ccxt_has: Dict = {"fetchCurrencies": False}
# fetchCurrencies API point requires authentication for Bibox,
# so switch it off for Freqtrade load_markets()
_ccxt_config: Dict = {"has": {"fetchCurrencies": False}}