Remove ccxt_rate_limit completely (was deprecated)
This commit is contained in:
parent
cd20078bef
commit
43119efaf0
@ -393,11 +393,6 @@ class Configuration(object):
|
|||||||
raise OperationalException(
|
raise OperationalException(
|
||||||
exception_msg
|
exception_msg
|
||||||
)
|
)
|
||||||
# Depreciation warning
|
|
||||||
if 'ccxt_rate_limit' in config.get('exchange', {}):
|
|
||||||
logger.warning("`ccxt_rate_limit` has been deprecated in favor of "
|
|
||||||
"`ccxt_config` and `ccxt_async_config` and will be removed "
|
|
||||||
"in a future version.")
|
|
||||||
|
|
||||||
logger.debug('Exchange "%s" supported', exchange)
|
logger.debug('Exchange "%s" supported', exchange)
|
||||||
return True
|
return True
|
||||||
|
@ -146,7 +146,6 @@ class Exchange(object):
|
|||||||
'secret': exchange_config.get('secret'),
|
'secret': exchange_config.get('secret'),
|
||||||
'password': exchange_config.get('password'),
|
'password': exchange_config.get('password'),
|
||||||
'uid': exchange_config.get('uid', ''),
|
'uid': exchange_config.get('uid', ''),
|
||||||
'enableRateLimit': exchange_config.get('ccxt_rate_limit', True)
|
|
||||||
}
|
}
|
||||||
if ccxt_kwargs:
|
if ccxt_kwargs:
|
||||||
logger.info('Applying additional ccxt config: %s', ccxt_kwargs)
|
logger.info('Applying additional ccxt config: %s', ccxt_kwargs)
|
||||||
|
@ -485,15 +485,6 @@ def test_check_exchange(default_conf, caplog) -> None:
|
|||||||
):
|
):
|
||||||
configuration.check_exchange(default_conf)
|
configuration.check_exchange(default_conf)
|
||||||
|
|
||||||
# Test ccxt_rate_limit depreciation
|
|
||||||
default_conf.get('exchange').update({'name': 'binance'})
|
|
||||||
default_conf['exchange']['ccxt_rate_limit'] = True
|
|
||||||
configuration.check_exchange(default_conf)
|
|
||||||
assert log_has("`ccxt_rate_limit` has been deprecated in favor of "
|
|
||||||
"`ccxt_config` and `ccxt_async_config` and will be removed "
|
|
||||||
"in a future version.",
|
|
||||||
caplog.record_tuples)
|
|
||||||
|
|
||||||
|
|
||||||
def test_cli_verbose_with_params(default_conf, mocker, caplog) -> None:
|
def test_cli_verbose_with_params(default_conf, mocker, caplog) -> None:
|
||||||
mocker.patch('freqtrade.configuration.open', mocker.mock_open(
|
mocker.patch('freqtrade.configuration.open', mocker.mock_open(
|
||||||
|
Loading…
Reference in New Issue
Block a user