diff --git a/tipbot/commands/balance.py b/tipbot/commands/balance.py index dfd65b3..91d96d8 100644 --- a/tipbot/commands/balance.py +++ b/tipbot/commands/balance.py @@ -11,4 +11,6 @@ from tipbot.helpers.decorators import wallet_rpc_required, log_event, registrati 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 {u.telegram_user}: {float(balances[1])} WOW ({float(balances[0])} WOW locked)') + unlocked = balances[1] + locked = balances[0] - balances[1] + update.message.reply_text(f'Available balance for {u.telegram_user}: {float(unlocked)} WOW ({float(locked)} WOW locked)')