Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-04 16:12:40 +03:00
parent e5d93deb3b
commit 69f3fa4c0f
7 changed files with 38 additions and 25 deletions

View file

@ -100,8 +100,8 @@ internal class DefaultTangemPayStorage @Inject constructor(
secureStorage.delete(createOrderIdKey(customerWalletAddress))
}
override suspend fun storeCheckCustomerWalletResult(userWalletId: UserWalletId) {
appPreferencesStore.store(PreferencesKeys.getTangemPayCheckCustomerByWalletId(userWalletId), true)
override suspend fun storeCheckCustomerWalletResult(userWalletId: UserWalletId, isPaeraCustomer: Boolean) {
appPreferencesStore.store(PreferencesKeys.getTangemPayCheckCustomerByWalletId(userWalletId), isPaeraCustomer)
}
override suspend fun checkCustomerWalletResult(userWalletId: UserWalletId): Boolean? {