From 51770b063d5468124540f7b8f34b9e22303424ea Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 11 Jun 2024 10:50:29 +0200 Subject: [PATCH] fix(wallet): display collectibles even if account is not in total balance fixes #15128 --- .../modules/main/wallet_section/all_collectibles/controller.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)