From 84ba431d10f88c92e0f815115a8e51692463fa84 Mon Sep 17 00:00:00 2001 From: hroff-1902 Date: Thu, 17 Oct 2019 19:05:50 +0300 Subject: [PATCH] Introduce a market with no 'active' field in conftest --- tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 6a0a74b5b..44f99b033 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -318,7 +318,8 @@ def markets(): 'symbol': 'TKN/BTC', 'base': 'TKN', 'quote': 'BTC', - 'active': True, + # According to ccxt, markets without active item set are also active + # 'active': True, 'precision': { 'price': 8, 'amount': 8,