Bug fix wallet balance

This commit is contained in:
Black Coffee 2022-10-06 22:01:40 +01:00
parent 24b87bed9f
commit 40c921c7f5

View file

@ -254,7 +254,7 @@ async def get_lnbits_wallet_balances(gerty):
if wallet:
wallets.append({
"name": wallet.name,
"balance": wallet.balance_msat,
"balance": wallet.balance_msat / 1000,
"inkey": wallet.inkey,
})
return wallets