making cli commands better

This commit is contained in:
lza_menace 2021-05-08 00:45:25 -07:00
parent 1edeaadda4
commit 7b98ee33a3
2 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ def get_users():
users = db.User.select()
wallet = wownero.Wallet()
for u in users:
click.echo(f'{u.telegram_user} ({u.telegram_id}) - wallet {u.account_index}')
click.echo(f'{u.telegram_user} ({u.telegram_id}) - wallet {u.account_index} ({u.address[0:12]})')
@click.command()
@click.argument('account_index')
@ -30,8 +30,8 @@ def get_balances():
wallet = wownero.Wallet()
accounts = wallet.accounts()
for acc in accounts:
balances = wallet.balances(account=acc)
click.echo(f'wallet {acc} - {float(balances[0])} locked, {float(balances[1])} unlocked')
balances = wallet.balances(account=acc[0])
click.echo(f'wallet {acc[0]} ({acc[1][0:12]}) - {float(balances[0])} locked, {float(balances[1])} unlocked')
@click.command()
def generate_bot_help():