fix(wallet): display collectibles even if account is not in total
balance fixes #15128
This commit is contained in:
parent
b2f6b68ddb
commit
51770b063d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue