Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-05 14:27:45 +02:00
parent 77a2899ac5
commit 404bcc011a
4 changed files with 10 additions and 5 deletions

View file

@ -59,9 +59,6 @@ internal class StakingBalanceUpdater @AssistedInject constructor(
suspend fun partialUpdate() {
coroutineScope {
listOf(
async {
updateStakeBalance()
},
async {
updateNetworkStatuses(delay = 0)
},
@ -78,6 +75,9 @@ internal class StakingBalanceUpdater @AssistedInject constructor(
async {
updateStakeBalance()
},
async {
updateProcessingActions()
},
).awaitAll()
}
}