Create a Hybrid Node
How to create a Substrate-based node that employs hybrid consensus
Use cases
Steps preview
Configure the block import pipeline
let (grandpa_block_import, grandpa_link) = sc_finality_grandpa::block_import(
client.clone(),
&(client.clone() as std::sync::Arc<_>),
select_chain.clone(),
)?;Create an import queue
Spawn the PoW authorship task
Spawn the Grandpa task
Examples
Resources
Last updated