Files
serai/substrate/consensus/src/lib.rs

129 lines
3.6 KiB
Rust
Raw Normal View History

2022-07-15 01:26:07 -04:00
use std::{marker::Sync, sync::Arc, time::Duration};
use substrate_prometheus_endpoint::Registry;
use sc_consensus_pow as sc_pow;
use sc_executor::NativeElseWasmExecutor;
use sc_service::TaskManager;
use serai_runtime::{self, opaque::Block, RuntimeApi};
mod algorithm;
2022-10-20 03:50:06 -04:00
mod signature_scheme;
mod import;
//mod tendermint;
pub struct ExecutorDispatch;
impl sc_executor::NativeExecutionDispatch for ExecutorDispatch {
#[cfg(feature = "runtime-benchmarks")]
type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
#[cfg(not(feature = "runtime-benchmarks"))]
type ExtendHostFunctions = ();
fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
serai_runtime::api::dispatch(method, data)
}
fn native_version() -> sc_executor::NativeVersion {
serai_runtime::native_version()
}
}
2022-07-15 01:26:07 -04:00
pub type FullClient =
sc_service::TFullClient<Block, RuntimeApi, NativeElseWasmExecutor<ExecutorDispatch>>;
type Db = sp_trie::PrefixedMemoryDB<sp_runtime::traits::BlakeTwo256>;
pub fn import_queue<S: sp_consensus::SelectChain<Block> + 'static>(
task_manager: &TaskManager,
client: Arc<FullClient>,
select_chain: S,
2022-07-15 01:26:07 -04:00
registry: Option<&Registry>,
) -> Result<sc_pow::PowImportQueue<Block, Db>, sp_consensus::Error> {
2022-07-15 01:26:07 -04:00
let pow_block_import = Box::new(sc_pow::PowBlockImport::new(
client.clone(),
client,
2022-07-15 01:26:07 -04:00
algorithm::AcceptAny,
0,
select_chain,
2022-07-15 01:26:07 -04:00
|_, _| async { Ok(sp_timestamp::InherentDataProvider::from_system_time()) },
));
sc_pow::import_queue(
pow_block_import,
None,
algorithm::AcceptAny,
&task_manager.spawn_essential_handle(),
2022-07-15 01:26:07 -04:00
registry,
)
}
// Produce a block every 5 seconds
async fn produce<
Block: sp_api::BlockT<Hash = sp_core::H256>,
2022-07-15 01:26:07 -04:00
Algorithm: sc_pow::PowAlgorithm<Block, Difficulty = sp_core::U256> + Send + Sync + 'static,
C: sp_api::ProvideRuntimeApi<Block> + 'static,
Link: sc_consensus::JustificationSyncLink<Block> + 'static,
2022-07-15 01:26:07 -04:00
P: Send + 'static,
>(
worker: sc_pow::MiningHandle<Block, Algorithm, C, Link, P>,
) where
sp_api::TransactionFor<C, Block>: Send + 'static,
{
loop {
let worker_clone = worker.clone();
std::thread::spawn(move || {
2022-07-15 01:26:07 -04:00
tokio::runtime::Runtime::new().unwrap().handle().block_on(async {
worker_clone.submit(vec![]).await;
});
});
2022-07-16 21:06:54 -04:00
tokio::time::sleep(Duration::from_secs(6)).await;
}
}
// If we're an authority, produce blocks
pub fn authority<S: sp_consensus::SelectChain<Block> + 'static>(
task_manager: &TaskManager,
client: Arc<FullClient>,
network: Arc<sc_network::NetworkService<Block, <Block as sp_runtime::traits::Block>::Hash>>,
pool: Arc<sc_transaction_pool::FullPool<Block, FullClient>>,
select_chain: S,
2022-07-15 01:26:07 -04:00
registry: Option<&Registry>,
) {
let proposer = sc_basic_authorship::ProposerFactory::new(
task_manager.spawn_handle(),
client.clone(),
pool,
registry,
2022-07-15 01:26:07 -04:00
None,
);
let pow_block_import = Box::new(sc_pow::PowBlockImport::new(
client.clone(),
client.clone(),
algorithm::AcceptAny,
0, // Block to start checking inherents at
select_chain.clone(),
2022-07-15 01:26:07 -04:00
move |_, _| async { Ok(sp_timestamp::InherentDataProvider::from_system_time()) },
));
let (worker, worker_task) = sc_pow::start_mining_worker(
pow_block_import,
client,
select_chain,
algorithm::AcceptAny,
proposer,
network.clone(),
network,
None,
2022-07-15 01:26:07 -04:00
move |_, _| async { Ok(sp_timestamp::InherentDataProvider::from_system_time()) },
2022-07-16 21:06:54 -04:00
Duration::from_secs(6),
Duration::from_secs(2),
);
2022-07-15 01:26:07 -04:00
task_manager.spawn_essential_handle().spawn_blocking("pow", None, worker_task);
2022-07-15 01:26:07 -04:00
task_manager.spawn_essential_handle().spawn("producer", None, produce(worker));
}