feat(wallet): Remove unused functions (#16342)

This commit is contained in:
Cuteivist 2024-09-23 08:04:04 +02:00 committed by GitHub
parent fa410434ad
commit baf3061fda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View File

@ -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()

View File

@ -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)