Updated on 2026-08-14

This commit is contained in:
Tangem 2024-03-20 08:27:03 +00:00
commit 76393d2fae
13 changed files with 90 additions and 13 deletions

View file

@ -9,6 +9,8 @@ interface UserWalletsStore {
suspend fun getSyncOrNull(key: UserWalletId): UserWallet?
suspend fun getAllSyncOrNull(): List<UserWallet>?
@Throws
suspend fun update(userWalletId: UserWalletId, update: suspend (UserWallet) -> UserWallet)
}