From ff3b638641ff47594966940d036cd8bd71afdea1 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Tue, 21 Jul 2020 00:12:13 -0700 Subject: [PATCH] include WOW str when showing balances --- tipbot/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tipbot/commands.py b/tipbot/commands.py index cf9f0e0..71f6241 100644 --- a/tipbot/commands.py +++ b/tipbot/commands.py @@ -189,7 +189,7 @@ def send(update, context): def balance(update, context): u = db.User.get(telegram_id=update.message.from_user['id']) balances = wownero.Wallet().balances(account=u.account_index) - update.message.reply_text(f'Available balance for {update.message.from_user["username"]}: {float(balances[1])} ({float(balances[0])} locked)') + update.message.reply_text(f'Available balance for {update.message.from_user["username"]}: {float(balances[1])} WOW ({float(balances[0])} WOW locked)') @wallet_rpc_required @registration_required