Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-28 16:54:23 +04:00
parent 6ba6f5b348
commit 5e8273c248
2 changed files with 2 additions and 3 deletions

View file

@ -42,7 +42,7 @@ sealed class TokenList {
) : TokenList()
/** Represents a state where the token list is empty. */
object Empty : TokenList() {
data object Empty : TokenList() {
override val totalFiatBalance: TotalFiatBalance = TotalFiatBalance.Loaded(
amount = BigDecimal.ZERO,

View file

@ -75,10 +75,9 @@ internal class CurrenciesStatusesLceOperations(
::createCurrenciesStatuses,
)
.distinctUntilChanged()
.mapLatest { maybeCurrenciesStatuses ->
.collectLatest { maybeCurrenciesStatuses ->
send(maybeCurrenciesStatuses)
}
.launchIn(scope = this)
}
}