Fix misinformation in /status table

This commit is contained in:
Matthias
2019-12-29 19:51:47 +01:00
parent 47bb8ad0d4
commit df7ceb4ccb
3 changed files with 4 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ class RPC:
def _rpc_status_table(self, stake_currency, fiat_display_currency: str) -> Tuple[List, List]:
trades = Trade.get_open_trades()
if not trades:
raise RPCException('no active order')
raise RPCException('no active trade')
else:
trades_list = []
for trade in trades: