Bug fix wallet balance
This commit is contained in:
parent
24b87bed9f
commit
40c921c7f5
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ async def get_lnbits_wallet_balances(gerty):
|
||||||
if wallet:
|
if wallet:
|
||||||
wallets.append({
|
wallets.append({
|
||||||
"name": wallet.name,
|
"name": wallet.name,
|
||||||
"balance": wallet.balance_msat,
|
"balance": wallet.balance_msat / 1000,
|
||||||
"inkey": wallet.inkey,
|
"inkey": wallet.inkey,
|
||||||
})
|
})
|
||||||
return wallets
|
return wallets
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue