Updated on 2026-08-14

This commit is contained in:
Tangem 2023-06-14 23:27:16 +03:00
parent 72256ab5c5
commit 24b9265c73
4 changed files with 9 additions and 9 deletions

View file

@ -100,7 +100,7 @@ class TransactionManagerImpl(
): SendTxResult {
val txData = walletManager.createTransaction(
amount = amount,
fee = Fee.CommonFee(Amount(value = feeAmount, blockchain = blockchain)),
fee = Fee.Common(Amount(value = feeAmount, blockchain = blockchain)),
destination = destinationAddress,
).copy(hash = dataToSign, extras = createExtras(walletManager, gasLimit, dataToSign))
@ -282,15 +282,15 @@ class TransactionManagerImpl(
val choosableFee = fee.data
val minProxyFee = ProxyFee(
gasLimit = (choosableFee.minimum as Fee.EthereumFee).gasLimit,
gasLimit = (choosableFee.minimum as Fee.Ethereum).gasLimit,
fee = convertToProxyAmount(amount = choosableFee.minimum.amount),
)
val normalProxyFee = ProxyFee(
gasLimit = (choosableFee.normal as Fee.EthereumFee).gasLimit,
gasLimit = (choosableFee.normal as Fee.Ethereum).gasLimit,
fee = convertToProxyAmount(amount = choosableFee.normal.amount),
)
val priorityProxyFee = ProxyFee(
gasLimit = (choosableFee.priority as Fee.EthereumFee).gasLimit,
gasLimit = (choosableFee.priority as Fee.Ethereum).gasLimit,
fee = convertToProxyAmount(amount = choosableFee.priority.amount),
)