CCXT rate limit config default to => true

+ adding config to config_full.json.example
This commit is contained in:
misagh
2018-07-31 16:54:02 +02:00
parent be1298dbd2
commit 74fa4ddca4
3 changed files with 3 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ class Exchange(object):
'secret': exchange_config.get('secret'),
'password': exchange_config.get('password'),
'uid': exchange_config.get('uid', ''),
'enableRateLimit': exchange_config.get('ccxt_rate_limit', False),
'enableRateLimit': exchange_config.get('ccxt_rate_limit', True),
})
except (KeyError, AttributeError):
raise OperationalException(f'Exchange {name} is not supported')