From ddc15132866681063873d2c6dc0fe307cc0ca66d Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 4 Oct 2018 20:34:33 +0200 Subject: [PATCH] Add ccxt_config to both config_samples --- config.json.example | 5 ++++- config_full.json.example | 12 ++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/config.json.example b/config.json.example index 7a0bb6b9b..5198b9d81 100644 --- a/config.json.example +++ b/config.json.example @@ -28,7 +28,10 @@ "name": "bittrex", "key": "your_exchange_key", "secret": "your_exchange_secret", - "ccxt_rate_limit": true, + "ccxt_config": {"enableRateLimit": true}, + "ccxt_async_config": { + "enableRateLimit": false + }, "pair_whitelist": [ "ETH/BTC", "LTC/BTC", diff --git a/config_full.json.example b/config_full.json.example index 71b119fb5..bdc6361d2 100644 --- a/config_full.json.example +++ b/config_full.json.example @@ -37,7 +37,11 @@ "name": "bittrex", "key": "your_exchange_key", "secret": "your_exchange_secret", - "ccxt_rate_limit": true, + "ccxt_config": {"enableRateLimit": true}, + "ccxt_async_config": { + "enableRateLimit": false, + "aiohttp_trust_env": false + }, "pair_whitelist": [ "ETH/BTC", "LTC/BTC", @@ -53,11 +57,7 @@ "pair_blacklist": [ "DOGE/BTC" ], - "outdated_offset": 5, - "ccxt_config": {}, - "ccxt_async_config": { - "aiohttp_trust_env": false - } + "outdated_offset": 5 }, "experimental": { "use_sell_signal": false,