Function reth_node_builder::setup::build_pipeline

source ยท
pub fn build_pipeline<N, H, B, Executor>(
    provider_factory: ProviderFactory<N>,
    stage_config: &StageConfig,
    header_downloader: H,
    body_downloader: B,
    consensus: Arc<dyn Consensus>,
    max_block: Option<u64>,
    metrics_tx: MetricEventsSender,
    prune_config: Option<PruneConfig>,
    static_file_producer: StaticFileProducer<ProviderFactory<N>>,
    executor: Executor,
    exex_manager_handle: ExExManagerHandle,
) -> Result<Pipeline<N>>
where N: ProviderNodeTypes, H: HeaderDownloader + 'static, B: BodyDownloader + 'static, Executor: BlockExecutorProvider,
Expand description

Builds the [Pipeline] with the given ProviderFactory and downloaders.