Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-07 12:16:22 +04:00
parent 76987714e2
commit 74c09ab3ba
6 changed files with 154 additions and 59 deletions

View file

@ -77,6 +77,6 @@
},
{
"name": "WALLET_BALANCE_FETCHER_ENABLED",
"version": "undefined"
"version": "5.27.0"
}
]

View file

@ -12,6 +12,9 @@ import kotlinx.coroutines.launch
*/
class JobHolder {
val isActive: Boolean
get() = job?.isActive ?: false
private var job: Job? = null
/** Update current [JobHolder.job] and return new [job] */