Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-04 13:21:38 +04:00
parent 197099a1c9
commit 125c5e4279
4 changed files with 253 additions and 49 deletions

View file

@ -111,6 +111,14 @@ class TransactionManagerImpl(
gasPremium = normalFee.gasPremium,
)
}
is Fee.Sui -> {
ProxyFee.Sui(
gasLimit = BigInteger.ZERO,
fee = convertToProxyAmount(amount = normalFee.amount),
gasPrice = normalFee.gasPrice,
gasBudget = normalFee.gasBudget,
)
}
else -> {
ProxyFee.Common(
gasLimit = BigInteger.ZERO,