Tweak wallet balance text
This commit is contained in:
parent
95e303d9ba
commit
0b63db46db
1 changed files with 2 additions and 2 deletions
|
|
@ -230,8 +230,8 @@ async def get_dashboard(gerty):
|
|||
wallets = await get_lnbits_wallet_balances(gerty)
|
||||
text = []
|
||||
for wallet in wallets:
|
||||
text.append(get_text_item_dict("{0}'s Wallet".format(wallet['name']), 15))
|
||||
text.append(get_text_item_dict("{0} sats".format(format_number(wallet['balance'])), 40))
|
||||
text.append(get_text_item_dict("{0}".format(wallet['name']), 15))
|
||||
text.append(get_text_item_dict("{0} sats".format(format_number(wallet['balance'])), 20))
|
||||
areas.append(text)
|
||||
|
||||
# Mempool fees
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue