fix(wallet): display collectibles even if account is not in total

balance

fixes #15128
This commit is contained in:
Anthony 2024-06-11 10:50:29 +02:00 committed by Anthony Laibe
parent b2f6b68ddb
commit 51770b063d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ proc init*(self: Controller) =
self.delegate.refreshNetworks()
proc getWalletAddresses*(self: Controller): seq[string] =
return self.walletAccountService.getWalletAddresses()
return self.walletAccountService.getWalletAccounts().map(a => a.address)
proc getChainIds*(self: Controller): seq[int] =
return self.networkService.getCurrentNetworks().map(n => n.chainId)