Updated on 2026-08-14

This commit is contained in:
Tangem 2023-05-30 14:44:10 +03:00
parent c9917f1c05
commit 5e4d8a9113
4 changed files with 15 additions and 7 deletions

View file

@ -200,9 +200,10 @@ class TransactionManagerImpl(
// for not EVM blockchains set gasLimit ZERO for now
when (fee.data) {
is TransactionFee.Single -> {
val amount = (fee.data as TransactionFee.Single).value
val singleFee = ProxyFee(
gasLimit = BigInteger.ZERO,
fee = convertToProxyAmount(amount = (fee.data as TransactionFee.Single).value),
fee = convertToProxyAmount(amount = amount),
)
ProxyFees(
minFee = singleFee,