mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
simplify exchange initialization
This commit is contained in:
parent
95e5c2e6c1
commit
ac32850034
|
@ -37,15 +37,12 @@ def init(config: dict) -> None:
|
|||
logger.info('Instance is running with dry_run enabled')
|
||||
|
||||
exchange_config = config['exchange']
|
||||
name = exchange_config['name']
|
||||
|
||||
# Find matching class for the given exchange name
|
||||
exchange_class = None
|
||||
for exchange in Exchanges:
|
||||
if name.upper() == exchange.name:
|
||||
exchange_class = exchange.value
|
||||
break
|
||||
if not exchange_class:
|
||||
name = exchange_config['name']
|
||||
try:
|
||||
exchange_class = Exchanges[name.upper()].value
|
||||
except KeyError:
|
||||
raise RuntimeError('Exchange {} is not supported'.format(name))
|
||||
|
||||
EXCHANGE = exchange_class(exchange_config)
|
||||
|
|
Loading…
Reference in New Issue
Block a user