Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-30 16:48:26 +03:00
parent acf110dbcc
commit 6910f74fd9
242 changed files with 866 additions and 732 deletions

View file

@ -100,7 +100,7 @@ internal class DefaultVisaRepository @Inject constructor(
)
}
override suspend fun getTxHistory(
override fun getTxHistory(
userWalletId: UserWalletId,
pageSize: Int,
isRefresh: Boolean,
@ -218,7 +218,7 @@ internal class DefaultVisaRepository @Inject constructor(
return cardWallet.publicKey.toHexString()
}
private suspend fun findVisaUserWallet(userWalletId: UserWalletId): UserWallet {
private fun findVisaUserWallet(userWalletId: UserWalletId): UserWallet {
val userWallet = requireNotNull(userWalletsStore.getSyncOrNull(userWalletId)) {
"No user wallet found: $userWalletId"
}

View file

@ -15,7 +15,7 @@ internal class MockVisaRepository @Inject constructor() : VisaRepository {
TODO("Not implemented for this build type")
}
override suspend fun getTxHistory(
override fun getTxHistory(
userWalletId: UserWalletId,
pageSize: Int,
isRefresh: Boolean,