pub fn start_collator_sync<Block, RA, BS, Spawner>(
    _: StartCollatorParams<Block, RA, BS, Spawner>
)where
    Block: BlockT,
    BS: BlockBackend<Block> + Send + Sync + 'static,
    Spawner: SpawnNamed + Clone + Send + Sync + 'static,
    RA: ProvideRuntimeApi<Block> + Send + Sync + 'static,
    RA::Api: CollectCollationInfo<Block>,
👎Deprecated: Collators should run consensus futures which handle this logic internally
Expand description

Start the collator in a synchronous function.