Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-30 17:55:54 +03:00
commit 459672ba51
3 changed files with 22 additions and 24 deletions

View file

@ -139,7 +139,7 @@ class SendTransactionUseCase(
internal fun handleError(result: Result.Failure): SendTransactionError {
if (ResultChecker.isNetworkError(result)) {
return SendTransactionError.NetworkError(
code = result.error.message,
code = result.error.code.toString(),
message = result.error.customMessage,
)
}