From 4733dac980b5bea7787c8bb1af1713c05472bd9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=AE=AE=E0=AE=A9=E0=AF=8B=E0=AE=9C=E0=AF=8D=E0=AE=95?= =?UTF-8?q?=E0=AF=81=E0=AE=AE=E0=AE=BE=E0=AE=B0=E0=AF=8D=20=E0=AE=AA?= =?UTF-8?q?=E0=AE=B4=E0=AE=A9=E0=AE=BF=E0=AE=9A=E0=AF=8D=E0=AE=9A=E0=AE=BE?= =?UTF-8?q?=E0=AE=AE=E0=AE=BF?= Date: Tue, 5 Apr 2022 09:09:52 +0530 Subject: [PATCH] fixed gateio override --- freqtrade/exchange/gateio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/exchange/gateio.py b/freqtrade/exchange/gateio.py index 2c02b83d8..a9ff218fe 100644 --- a/freqtrade/exchange/gateio.py +++ b/freqtrade/exchange/gateio.py @@ -45,7 +45,7 @@ class Gateio(Exchange): def _init_ccxt(self, exchange_config: Dict[str, Any], ccxt_module: CcxtModuleType = ccxt, ccxt_kwargs: Dict = {}) -> ccxt.Exchange: ccxt_kwargs.update({"timeout": 15000}) - super()._init_ccxt(exchange_config, ccxt_module, ccxt_kwargs) + return super()._init_ccxt(exchange_config, ccxt_module, ccxt_kwargs) def validate_ordertypes(self, order_types: Dict) -> None: super().validate_ordertypes(order_types)