don't show fiat-currency if not set

This commit is contained in:
Matthias
2018-07-24 08:20:32 +01:00
parent 1a9ead45eb
commit 30b72ad98a
2 changed files with 7 additions and 5 deletions

View File

@@ -125,9 +125,11 @@ class Telegram(RPC):
message = "*{exchange}:* Buying [{pair}]({market_url})\n" \
"with limit `{limit:.8f}\n" \
"({stake_amount:.6f} {stake_currency}," \
"{stake_amount_fiat:.3f} {fiat_currency})`" \
.format(**msg)
"({stake_amount:.6f} {stake_currency}".format(**msg)
if msg.get('fiat_currency', None):
message += ",{stake_amount_fiat:.3f} {fiat_currency}".format(**msg)
message += ")`"
elif msg['type'] == RPCMessageType.SELL_NOTIFICATION:
msg['amount'] = round(msg['amount'], 8)