pub fn start_full_node<Block, Client, Backend, RCInterface, IQ>(
    _: StartFullNodeParams<'_, Block, Client, RCInterface, IQ>
) -> Result<()>where
    Block: BlockT,
    Client: Finalizer<Block, Backend> + UsageProvider<Block> + Send + Sync + BlockBackend<Block> + BlockchainEvents<Block> + 'static,
    for<'a> &'a Client: BlockImport<Block>,
    Backend: BackendT<Block> + 'static,
    RCInterface: RelayChainInterface + Clone + 'static,
    IQ: ImportQueue<Block> + 'static,
Expand description

Start a full node for a parachain.

A full node will only sync the given parachain and will follow the tip of the chain.