mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Don't default to false for init()
This commit is contained in:
parent
d7bebc4385
commit
d6cf314481
|
@ -73,7 +73,7 @@ class FreqtradeBot(object):
|
|||
|
||||
self.active_pair_whitelist: List[str] = self.config['exchange']['pair_whitelist']
|
||||
|
||||
persistence.init(self.config.get('db_url', None), self.config.get('dry_run', False))
|
||||
persistence.init(self.config.get('db_url', None), self.config.get('dry_run'))
|
||||
|
||||
# Set initial bot state from config
|
||||
initial_state = self.config.get('initial_state')
|
||||
|
|
Loading…
Reference in New Issue
Block a user