Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-24 15:13:32 +05:00
parent d8fe4991f5
commit f7dc4dac0f

View file

@ -334,15 +334,15 @@ internal class SendModel @Inject constructor(
userWalletId = params.userWalletId,
currency = cryptoCurrency,
).onEach { (account, cryptoCurrencyStatus) ->
isAccountModeFlow.value = isAccountsModeEnabledUseCase.invokeSync()
accountFlow.value = account
cryptoCurrencyStatusFlow.value = cryptoCurrencyStatus
feeCryptoCurrencyStatusFlow.value = getFeePaidCryptoCurrencyStatusSyncUseCase(
userWalletId = params.userWalletId,
cryptoCurrencyStatus = cryptoCurrencyStatus,
).getOrNull() ?: cryptoCurrencyStatus
isAccountModeFlow.value = isAccountsModeEnabledUseCase.invokeSync()
accountFlow.value = account
if (params.amount != null) {
router.replaceAll(Confirm)
}