mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-23 17:28:23 +00:00
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:
parent
5db1f4ee74
commit
1ee3401a3c
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue