Updated on 2026-08-14

This commit is contained in:
Tangem 2023-10-27 23:53:16 +08:00
parent 9499cd081f
commit 45a503cc0c

View file

@ -10,6 +10,6 @@ internal class DefaultUserTokensStore(
) : UserTokensStore, StringKeyDataStoreDecorator<UserWalletId, UserTokensResponse>(dataStore) {
override fun provideStringKey(key: UserWalletId): String {
return key.stringValue
return "user_tokens_${key.stringValue}"
}
}