pub fn import_queue<P, Block, I, C, S, CIDP>(
    _: ImportQueueParams<'_, Block, I, C, S, CIDP>
) -> Result<DefaultImportQueue<Block, C>, Error>where
    Block: BlockT,
    C::Api: BlockBuilderApi<Block> + AuraApi<Block, <P as Pair>::Public> + ApiExt<Block>,
    C: 'static + ProvideRuntimeApi<Block> + BlockOf + Send + Sync + AuxStore + UsageProvider<Block> + HeaderBackend<Block>,
    I: BlockImport<Block, Error = ConsensusError, Transaction = TransactionFor<C, Block>> + Send + Sync + 'static,
    P: Pair + Send + Sync + 'static,
    P::Public: Clone + Eq + Send + Sync + Hash + Debug + Encode + Decode,
    P::Signature: Encode + Decode,
    S: SpawnEssentialNamed,
    CIDP: CreateInherentDataProviders<Block, ()> + Sync + Send + 'static,
    CIDP::InherentDataProviders: InherentDataProviderExt + Send + Sync,
Expand description

Start an import queue for the Aura consensus algorithm.