1
0

list_wallets: fix wallet path (follow-up 902ec09791)

This commit is contained in:
ThomasV
2025-06-04 10:45:46 +02:00
parent cae71222d2
commit 69545f08ca

View File

@@ -264,11 +264,11 @@ class Commands(Logger):
"""List wallets open in daemon"""
return [
{
'path': path,
'path': w.db.storage.path,
'synchronized': w.is_up_to_date(),
'unlocked': not w.has_password() or (w.get_unlocked_password() is not None),
}
for path, w in self.daemon.get_wallets().items()
for w in self.daemon.get_wallets().values()
]
@command('n')