Fix shielding state interpretation (#1333)

This commit is contained in:
Honza Rychnovský 2024-04-10 14:41:41 +02:00 committed by GitHub
parent ed34fb1b3a
commit bcdf328cb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -48,9 +48,10 @@ class CreateTransactionsViewModel(application: Application) : AndroidViewModel(a
// transaction failure screen presented
SubmitResult.MultipleTrxFailure
}
} else {
// All transaction submissions were successful
SubmitResult.Success
}
// All transaction submissions were successful
SubmitResult.Success
}.onSuccess {
Twig.debug { "Transactions submitted successfully" }
}.onFailure {