fix user outputs

This commit is contained in:
lza_menace 2021-05-08 01:13:51 -07:00
parent 3d5e316f75
commit 84529899ec
1 changed files with 3 additions and 1 deletions

View File

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