return back check in init_ccxt()

This commit is contained in:
hroff-1902 2019-06-11 13:43:29 +03:00
parent 676e730013
commit db6ccef6bd

View File

@ -156,8 +156,8 @@ class Exchange(object):
# Find matching class for the given exchange name # Find matching class for the given exchange name
name = exchange_config['name'] name = exchange_config['name']
# if not is_exchange_supported(name, ccxt_module): if not is_exchange_known(name, ccxt_module):
# raise OperationalException(f'Exchange {name} is not supported') raise OperationalException(f'Exchange {name} is not supported by ccxt')
ex_config = { ex_config = {
'apiKey': exchange_config.get('key'), 'apiKey': exchange_config.get('key'),