mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
small cleanup
This commit is contained in:
parent
cb271f51d1
commit
bc4342b2d0
|
@ -101,7 +101,6 @@ class ApiServer(RPC):
|
||||||
Label can be used as a shortcut when refactoring
|
Label can be used as a shortcut when refactoring
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
# TODO: actions should not be GET...
|
|
||||||
# Actions to control the bot
|
# Actions to control the bot
|
||||||
app.add_url_rule('/start', 'start', view_func=self._start, methods=['POST'])
|
app.add_url_rule('/start', 'start', view_func=self._start, methods=['POST'])
|
||||||
app.add_url_rule('/stop', 'stop', view_func=self._stop, methods=['POST'])
|
app.add_url_rule('/stop', 'stop', view_func=self._stop, methods=['POST'])
|
||||||
|
@ -114,7 +113,7 @@ class ApiServer(RPC):
|
||||||
app.add_url_rule('/daily', 'daily', view_func=self._daily, methods=['GET'])
|
app.add_url_rule('/daily', 'daily', view_func=self._daily, methods=['GET'])
|
||||||
app.add_url_rule('/edge', 'edge', view_func=self._edge, methods=['GET'])
|
app.add_url_rule('/edge', 'edge', view_func=self._edge, methods=['GET'])
|
||||||
app.add_url_rule('/profit', 'profit', view_func=self._profit, methods=['GET'])
|
app.add_url_rule('/profit', 'profit', view_func=self._profit, methods=['GET'])
|
||||||
app.add_url_rule('/performance', 'performance', view_func=self._performance,
|
app.add_url_rule('/performance', 'performance', view_func=self._performance,
|
||||||
methods=['GET'])
|
methods=['GET'])
|
||||||
app.add_url_rule('/status', 'status', view_func=self._status, methods=['GET'])
|
app.add_url_rule('/status', 'status', view_func=self._status, methods=['GET'])
|
||||||
app.add_url_rule('/version', 'version', view_func=self._version, methods=['GET'])
|
app.add_url_rule('/version', 'version', view_func=self._version, methods=['GET'])
|
||||||
|
@ -141,8 +140,8 @@ class ApiServer(RPC):
|
||||||
|
|
||||||
logger.info('Starting HTTP Server at {}:{}'.format(rest_ip, rest_port))
|
logger.info('Starting HTTP Server at {}:{}'.format(rest_ip, rest_port))
|
||||||
if not IPv4Address(rest_ip).is_loopback:
|
if not IPv4Address(rest_ip).is_loopback:
|
||||||
logger.info("SECURITY WARNING - Local Rest Server listening to external connections")
|
logger.warning("SECURITY WARNING - Local Rest Server listening to external connections")
|
||||||
logger.info("SECURITY WARNING - This is insecure please set to your loopback,"
|
logger.warning("SECURITY WARNING - This is insecure please set to your loopback,"
|
||||||
"e.g 127.0.0.1 in config.json")
|
"e.g 127.0.0.1 in config.json")
|
||||||
|
|
||||||
# Run the Server
|
# Run the Server
|
||||||
|
|
|
@ -95,7 +95,7 @@ class FtRestClient():
|
||||||
|
|
||||||
def balance(self):
|
def balance(self):
|
||||||
"""
|
"""
|
||||||
get the account balance
|
Get the account balance
|
||||||
:returns: json object
|
:returns: json object
|
||||||
"""
|
"""
|
||||||
return self._get("balance")
|
return self._get("balance")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user