Updated on 2026-08-14
This commit is contained in:
parent
6ba6f5b348
commit
5e8273c248
2 changed files with 2 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -75,10 +75,9 @@ internal class CurrenciesStatusesLceOperations(
|
|||
::createCurrenciesStatuses,
|
||||
)
|
||||
.distinctUntilChanged()
|
||||
.mapLatest { maybeCurrenciesStatuses ->
|
||||
.collectLatest { maybeCurrenciesStatuses ->
|
||||
send(maybeCurrenciesStatuses)
|
||||
}
|
||||
.launchIn(scope = this)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue