Updated on 2026-08-14

This commit is contained in:
Tangem 2022-10-20 19:53:59 +05:00
parent 15995b8fc3
commit 1336f0dc64
5 changed files with 94 additions and 4 deletions

View file

@ -41,5 +41,15 @@ class OnboardingSaltPayHelper {
Result.Failure(error)
}
}
suspend fun testProceedToMainScreen(scanResponse: ScanResponse): Result<Boolean> {
return try {
Result.Success(false)
} catch (ex: Exception) {
Result.Failure(ex)
} catch (error: SaltPayRegistrationError){
Result.Failure(error)
}
}
}
}