Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-12 20:47:45 +03:00
parent 8b47cd5aba
commit 5014718503

View file

@ -75,13 +75,13 @@ internal class DefaultMultiNetworkStatusFetcher @Inject constructor(
val result = coroutineScope {
params.networks
.map {
.map { network ->
async {
singleNetworkStatusFetcher(
params = SingleNetworkStatusFetcher.Params.Prepared(
userWalletId = params.userWalletId,
network = it,
addedNetworkCurrencies = networksCurrencies,
network = network,
addedNetworkCurrencies = networksCurrencies.filter { it.network == network }.toSet(),
),
)
}