fix user outputs

master
lza_menace 3 years ago
parent 3d5e316f75
commit 84529899ec

@ -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)')