From 9bbc186b1636237189deccac89c4d5b0e3aed19e Mon Sep 17 00:00:00 2001 From: creslinux Date: Thu, 14 Jun 2018 15:44:12 +0000 Subject: [PATCH] Updated Stop and start calls added Along with refactoring to base line and use decorators. Also modules loaded optionally if enabled in config or not binds to ip / port set from config.json with warning if not localhost TODO: - use argparse in client, and generally clean client up - create unit test - documentation - extend to other RCP commands, after feedback --- freqtrade/rpc/local_rest_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/rpc/local_rest_server.py b/freqtrade/rpc/local_rest_server.py index 24d9a6594..92bb17be8 100644 --- a/freqtrade/rpc/local_rest_server.py +++ b/freqtrade/rpc/local_rest_server.py @@ -95,7 +95,7 @@ class LocalRestSuperWrap(RPC): """ Section to handle configuration and running of the Rest serve - also to check and warn if not bound to 127.0.0.1 as a security risk + also to check and warn if not bound to 127.0.0.1 as a security risk. """ rest_ip = self._config['rest_cmd_line']['listen_ip_address']