From a6ce6ef2c46c9b3ef71002bf0a744a8d2062a709 Mon Sep 17 00:00:00 2001 From: enenn Date: Mon, 12 Mar 2018 19:59:04 +0100 Subject: [PATCH] Limit exchanges to binance and bittrex for now --- freqtrade/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/misc.py b/freqtrade/misc.py index 17fec8210..3033b3385 100644 --- a/freqtrade/misc.py +++ b/freqtrade/misc.py @@ -415,7 +415,7 @@ CONF_SCHEMA = { 'exchange': { 'type': 'object', 'properties': { - 'name': {'type': 'string'}, + 'name': {'type': 'string', 'enum': ['binance', 'bittrex']}, 'key': {'type': 'string'}, 'secret': {'type': 'string'}, 'password': {'type': 'string'},