Updated on 2026-08-14

This commit is contained in:
Tangem 2024-03-17 21:59:37 +08:00
parent 7d9f1f0cf4
commit 2720e5588c
9 changed files with 36 additions and 11 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)
}