diff --git a/src/app/modules/main/wallet_section/send/controller.nim b/src/app/modules/main/wallet_section/send/controller.nim index 4f57455968..5affa77bf2 100644 --- a/src/app/modules/main/wallet_section/send/controller.nim +++ b/src/app/modules/main/wallet_section/send/controller.nim @@ -143,9 +143,6 @@ proc proceedWithTransactionsSignatures*(self: Controller, fromAddr: string, toAd proc areTestNetworksEnabled*(self: Controller): bool = return self.walletAccountService.areTestNetworksEnabled() -proc getTotalCurrencyBalance*(self: Controller, address: seq[string], chainIds: seq[int]): float64 = - return self.walletAccountService.getTotalCurrencyBalance(address, chainIds) - proc getCurrentNetworks*(self: Controller): seq[NetworkItem] = return self.networkService.getCurrentNetworks() diff --git a/src/app/modules/shared_modules/keycard_popup/controller.nim b/src/app/modules/shared_modules/keycard_popup/controller.nim index b4d92a0a23..d82ae9e448 100644 --- a/src/app/modules/shared_modules/keycard_popup/controller.nim +++ b/src/app/modules/shared_modules/keycard_popup/controller.nim @@ -830,9 +830,6 @@ proc getCurrencyFormat*(self: Controller, symbol: string): CurrencyFormatDto = return return self.walletAccountService.getCurrencyFormat(symbol) -proc getTotalCurrencyBalance*(self: Controller, address: string, chainIds: seq[int]): float64 = - return self.walletAccountService.getTotalCurrencyBalance(@[address], chainIds) - proc parseCurrencyValueByTokensKey*(self: Controller, tokensKey: string, amountInt: UInt256): float64 = return self.walletAccountService.parseCurrencyValueByTokensKey(tokensKey, amountInt)