Function build_networked_pipeline

Source
pub fn build_networked_pipeline<N, Client, Evm>(
    config: &StageConfig,
    client: Client,
    consensus: Arc<dyn FullConsensus<N::Primitives, Error = ConsensusError>>,
    provider_factory: ProviderFactory<N>,
    task_executor: &TaskExecutor,
    metrics_tx: MetricEventsSender,
    prune_config: Option<PruneConfig>,
    max_block: Option<BlockNumber>,
    static_file_producer: StaticFileProducer<ProviderFactory<N>>,
    evm_config: Evm,
    exex_manager_handle: ExExManagerHandle<N::Primitives>,
) -> Result<Pipeline<N>>
where N: ProviderNodeTypes, Client: BlockClient<Block = BlockTy<N>> + 'static, Evm: ConfigureEvm<Primitives = N::Primitives> + 'static,
Expand description

Constructs a [Pipeline] that’s wired to the network