Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-24 09:27:57 +03:00
parent c120acae62
commit 1ab4cdd170
10 changed files with 69 additions and 43 deletions

View file

@ -55,7 +55,8 @@ internal class DefaultBlockchainSDKFactory(
// flow3 = subscribe on feature toggles changes, TODO: [REDACTED_JIRA]
transform = walletManagerFactoryCreator::create,
)
.stateIn(scope = mainScope, started = SharingStarted.Lazily, initialValue = null)
// don't use Lazily because some features (WC) require initialized factory on app started
.stateIn(scope = mainScope, started = SharingStarted.Eagerly, initialValue = null)
}
private fun CoroutineScope.updateBlockchainProviderTypes() {