Rename config whitelist to pairlist

This commit is contained in:
Matthias
2018-12-04 20:23:03 +01:00
parent bf678164c7
commit 6ab907bef1
10 changed files with 29 additions and 29 deletions

View File

@@ -59,7 +59,7 @@ class FreqtradeBot(object):
self.persistence = None
self.exchange = Exchange(self.config)
self.wallets = Wallets(self.exchange)
if self.config.get('whitelist', {}).get('method') == 'VolumePairList':
if self.config.get('pairlist', {}).get('method') == 'VolumePairList':
self.pairlists: StaticPairList = VolumePairList(self, self.config)
else:
self.pairlists: StaticPairList = StaticPairList(self, self.config)