Trait sc_consensus::block_import::BlockImport
source · pub trait BlockImport<B: BlockT> {
type Error: Error + Send + 'static;
// Required methods
fn check_block<'life0, 'async_trait>(
&'life0 self,
block: BlockCheckParams<B>,
) -> Pin<Box<dyn Future<Output = Result<ImportResult, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn import_block<'life0, 'async_trait>(
&'life0 self,
block: BlockImportParams<B>,
) -> Pin<Box<dyn Future<Output = Result<ImportResult, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Block import trait.
Required Associated Types§
Required Methods§
sourcefn check_block<'life0, 'async_trait>(
&'life0 self,
block: BlockCheckParams<B>,
) -> Pin<Box<dyn Future<Output = Result<ImportResult, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn check_block<'life0, 'async_trait>(
&'life0 self,
block: BlockCheckParams<B>,
) -> Pin<Box<dyn Future<Output = Result<ImportResult, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Check block preconditions.
sourcefn import_block<'life0, 'async_trait>(
&'life0 self,
block: BlockImportParams<B>,
) -> Pin<Box<dyn Future<Output = Result<ImportResult, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn import_block<'life0, 'async_trait>(
&'life0 self,
block: BlockImportParams<B>,
) -> Pin<Box<dyn Future<Output = Result<ImportResult, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Import a block.