feat(wallet): Remove unused functions (#16342)
This commit is contained in:
parent
fa410434ad
commit
baf3061fda
|
@ -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()
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue