Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-02 17:54:38 +05:00
parent 28d15c9043
commit a4eb7fce06
6 changed files with 41 additions and 38 deletions

View file

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