Updated on 2026-08-14
This commit is contained in:
parent
9091a8acac
commit
36fabffe3a
1 changed files with 5 additions and 1 deletions
|
|
@ -285,7 +285,11 @@ internal class DefaultCurrenciesRepository(
|
|||
|
||||
private suspend fun storeAndPushTokens(userWalletId: UserWalletId, response: UserTokensResponse) {
|
||||
userTokensStore.store(userWalletId, response)
|
||||
tangemTechApi.saveUserTokens(userWalletId.stringValue, response)
|
||||
try {
|
||||
tangemTechApi.saveUserTokens(userWalletId.stringValue, response)
|
||||
} catch (e: Throwable) {
|
||||
Timber.e("Unable to save user tokens for: ${userWalletId.stringValue}")
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun fetchExchangeableUserMarketCoinsByIds(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue