From 0c035b276cda7604acad4c7206468bed75583c63 Mon Sep 17 00:00:00 2001 From: creslin <34645187+creslinux@users.noreply.github.com> Date: Fri, 27 Jul 2018 17:28:18 +0000 Subject: [PATCH] Update __init__.py --- freqtrade/exchange/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/exchange/__init__.py b/freqtrade/exchange/__init__.py index dc81ff989..41fe3e832 100644 --- a/freqtrade/exchange/__init__.py +++ b/freqtrade/exchange/__init__.py @@ -95,7 +95,7 @@ class Exchange(object): except (KeyError, AttributeError): raise OperationalException(f'Exchange {name} is not supported') - # check if config requests sandbox, if so use ['test'] from url + # check if config has sandbox = True, if so use ['test'] sandbox API from CCXT if (exchange_config.get('sandbox')): api.urls['api'] = api.urls['test'] @@ -156,7 +156,7 @@ class Exchange(object): def symbol_prec(self, pair, amount: float): ''' - Returns the amount to but or sell to the precision the Exchange accepts + Returns the amount to buy or sell to the precision the Exchange accepts :param amount: amount :return: amount '''