Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-13 07:50:30 +02:00
commit 1ccffe29f5

View file

@ -74,13 +74,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(),
),
)
}