Align /balance output to show everything in stake currency

the conversation to BTC does not make sense
This commit is contained in:
Matthias
2019-12-24 06:58:30 +01:00
parent 20b52fcef9
commit a105e5664a
3 changed files with 5 additions and 4 deletions

View File

@@ -341,13 +341,14 @@ class RPC:
raise RPCException('All balances are zero.')
symbol = fiat_display_currency
value = self._fiat_converter.convert_amount(total, 'BTC',
value = self._fiat_converter.convert_amount(total, stake_currency,
symbol) if self._fiat_converter else 0
return {
'currencies': output,
'total': total,
'symbol': symbol,
'value': value,
'stake': stake_currency,
'note': 'Simulated balances' if self._freqtrade.config.get('dry_run', False) else ''
}