Default load minimal config

This commit is contained in:
Matthias
2019-08-16 14:56:38 +02:00
parent 8655e521d7
commit 3c15e3ebdd
2 changed files with 27 additions and 0 deletions

View File

@@ -38,6 +38,20 @@ SUPPORTED_FIAT = [
"BTC", "XBT", "ETH", "XRP", "LTC", "BCH", "USDT"
]
MINIMAL_CONFIG = {
'stake_currency': '',
'dry_run': True,
'exchange': {
'name': '',
'key': '',
'secret': '',
'pair_whitelist': [],
'ccxt_async_config': {
'enableRateLimit': True,
}
}
}
# Required json-schema for user specified config
CONF_SCHEMA = {
'type': 'object',