diff --git a/crates/node/builder/src/setup.rs b/crates/node/builder/src/setup.rs index 5a916c2c8f..b8b21b93c7 100644 --- a/crates/node/builder/src/setup.rs +++ b/crates/node/builder/src/setup.rs @@ -36,7 +36,7 @@ pub fn build_networked_pipeline( static_file_producer: StaticFileProducer, executor: Executor, exex_manager_handle: ExExManagerHandle, - disable_hash_stages: bool, + skip_state_root_validation: bool, ) -> eyre::Result> where DB: Database + Unpin + Clone + 'static, @@ -64,7 +64,7 @@ where static_file_producer, executor, exex_manager_handle, - disable_hash_stages, + skip_state_root_validation, )?; Ok(pipeline)