Updated on 2026-08-14

This commit is contained in:
Tangem 2024-09-16 15:40:11 +05:00
parent bc7cb0abe8
commit 90dfc43a90
2 changed files with 7 additions and 2 deletions

View file

@ -123,7 +123,7 @@ internal class MainViewModel @Inject constructor(
private fun fetchStakingTokens() {
viewModelScope.launch(dispatchers.main) {
fetchStakingTokensUseCase()
fetchStakingTokensUseCase(true)
.onLeft { Timber.e(it.toString(), "Unable to fetch the staking tokens list") }
.onRight { Timber.d("Staking token list was fetched successfully") }
}