diff --git a/src/app/modules/main/wallet_section/all_collectibles/controller.nim b/src/app/modules/main/wallet_section/all_collectibles/controller.nim index b3f0e60c18..b4168d2908 100644 --- a/src/app/modules/main/wallet_section/all_collectibles/controller.nim +++ b/src/app/modules/main/wallet_section/all_collectibles/controller.nim @@ -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)