Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-20 15:13:47 +04:00
parent 33b7a53905
commit c5560c3c6a
101 changed files with 274 additions and 272 deletions

View file

@ -20,7 +20,7 @@ internal object NetworkStatusSupplierModule {
return object : SingleNetworkStatusSupplier(
factory = factory,
keyCreator = {
"single_network_status_${it.userWalletId.stringValue}_${it.network.id.value}_" +
"single_network_status_${it.userWalletId.stringValue}_${it.network.rawId}_" +
it.network.derivationPath.value
},
) {}

View file

@ -62,7 +62,7 @@ internal class CommonNetworkStatusFetcher @Inject constructor(
networksStatusesStore.storeStatus(userWalletId = userWalletId, status = status)
}
.onLeft {
Timber.e("Failed to fetch network status for $userWalletId [${network.id.value}]: $it")
Timber.e("Failed to fetch network status for $userWalletId [${network.rawId}]: $it")
networksStatusesStore.setSourceAsOnlyCache(userWalletId = userWalletId, network = network)
}
}