We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3ceaa8 commit d7c027fCopy full SHA for d7c027f
freqtrade/exchange/exchange.py
@@ -300,7 +300,7 @@ def __init__(
300
301
if self.trading_mode != TradingMode.SPOT and load_leverage_tiers:
302
self.fill_leverage_tiers()
303
- self.additional_exchange_init()
+ self.ft_additional_exchange_init()
304
305
def __del__(self):
306
"""
@@ -455,6 +455,12 @@ def precision_mode_price(self) -> int:
455
456
return self._api.precisionMode
457
458
+ def ft_additional_exchange_init(self) -> None:
459
+ """
460
+ Wrapper around additional_exchange_init to simplify testing
461
462
+ self.additional_exchange_init()
463
+
464
def additional_exchange_init(self) -> None:
465
466
Additional exchange initialization logic.
0 commit comments