fix: allow to start the indexer even without any provider set (#170)

We allow to pass only indexer configuration even is we are not running
as a MSP or a BSP.
This commit is contained in:
undercover-cactus 2025-09-17 17:09:12 +02:00 committed by GitHub
parent 5db1f4ee74
commit 1ee3401a3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -875,7 +875,11 @@ where
};
} else {
return new_full_impl::<UserRole, NoStorageLayer, Runtime, RuntimeApi, N>(
config, eth_config, None, None, None,
config,
eth_config,
None,
indexer_options,
fisherman_options,
)
.await;
};