Updated on 2026-08-14

This commit is contained in:
Tangem 2023-10-10 15:40:23 +03:00
parent 36fabffe3a
commit c8da4e40e1
3 changed files with 10 additions and 3 deletions

View file

@ -7,6 +7,7 @@ import com.tangem.domain.tokens.model.TokenActionsState
import com.tangem.domain.tokens.repository.MarketCryptoCurrencyRepository
import com.tangem.domain.wallets.models.UserWalletId
import com.tangem.utils.coroutines.CoroutineDispatcherProvider
import com.tangem.utils.isNullOrZero
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.flow
import kotlinx.coroutines.flow.flowOn
@ -70,7 +71,7 @@ class GetCryptoCurrencyActionsUseCase(
}
// send
if (cryptoCurrencyStatus.value.amount?.signum() == 0) {
if (cryptoCurrencyStatus.value.amount.isNullOrZero()) {
disabledList.add(TokenActionsState.ActionState.Send(false))
} else {
activeList.add(TokenActionsState.ActionState.Send(true))