pub async fn start_node<RuntimeApi, Customizations>(
    parachain_config: Configuration,
    polkadot_config: Configuration,
    collator_options: CollatorOptions,
    para_id: ParaId,
    rpc_config: RpcConfig,
    async_backing: bool,
    block_authoring_duration: Duration,
    hwbench: Option<HwBench>,
    legacy_block_import_strategy: bool,
    nimbus_full_pov: bool
) -> Result<(TaskManager, Arc<TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>)>
where RuntimeApi: ConstructRuntimeApi<Block, TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>> + Send + Sync + 'static, RuntimeApi::RuntimeApi: RuntimeApiCollection, Customizations: ClientCustomizations + 'static,
Expand description

Start a normal parachain node.