Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-15 19:22:37 +05:00
parent fac21a0c25
commit c6da35bb66
3 changed files with 6 additions and 20 deletions

View file

@ -395,10 +395,10 @@ internal class SendConfirmModel @Inject constructor(
}
}
private suspend fun updateTransactionStatus(txData: TransactionData.Uncompiled) {
private fun updateTransactionStatus(txData: TransactionData.Uncompiled) {
val txUrl = getExplorerTransactionUrlUseCase(
userWalletId = userWallet.walletId,
network = cryptoCurrency.network,
txHash = txData.hash.orEmpty(),
networkId = cryptoCurrency.network.id,
).getOrElse { "" }
_uiState.update(SendConfirmSentStateTransformer(txData, txUrl))
}