ui: Display count of locked UTXOs on wallet page.

This commit is contained in:
tecnovert
2024-01-28 20:16:30 +02:00
parent 30a5ea1652
commit 9ee6669179
10 changed files with 72 additions and 9 deletions

View File

@@ -6522,6 +6522,9 @@ class BasicSwap(BaseApp):
'locked': walletinfo['locked'],
}
if 'locked_utxos' in walletinfo:
rv['locked_utxos'] = walletinfo['locked_utxos']
if coin == Coins.PART:
rv['stealth_address'] = self.getCachedStealthAddressForCoin(Coins.PART)
rv['anon_balance'] = walletinfo['anon_balance']