Updated on 2026-08-14

This commit is contained in:
Tangem 2020-09-30 22:04:17 +03:00
parent 338e4fe3cf
commit 8d628ff307

View file

@ -84,7 +84,9 @@ private fun verifyAndSendTransaction(
dispatch(SendAction.SendError(TapError.CreateAccountUnderfunded(listOf(reserve, symbol))))
}
is SendException -> {
FirebaseCrashlytics.getInstance().recordException(result.error!!)
result.error?.let {
FirebaseCrashlytics.getInstance().recordException(it)
}
}
is Throwable -> {
val message = (result.error as Throwable).message