Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-09 18:14:18 +04:00
parent 997194b3fb
commit 93bab15d0c
3 changed files with 13 additions and 13 deletions

View file

@ -34,6 +34,16 @@ interface HistoryTxListManager {
val isLoadingMore: Boolean,
val hasMore: Boolean,
) : HistoryState
val isContent: Boolean
get() = when (this) {
is Content -> true
Empty,
Error,
Loading,
Unavailable,
-> false
}
}
/** How the history starts for a currency: which on-chain backbone exists and whether express is available. */