referrerpolicy=no-referrer-when-downgrade
substrate_test_runtime_client::sp_consensus::block_validation

Trait BlockAnnounceValidator

Source
pub trait BlockAnnounceValidator<B>
where B: Block,
{ // Required method fn validate( &mut self, header: &<B as Block>::Header, data: &[u8], ) -> Pin<Box<dyn Future<Output = Result<Validation, Box<dyn Error + Send>>> + Send>>; }
Expand description

Type which checks incoming block announcements.

Required Methods§

Source

fn validate( &mut self, header: &<B as Block>::Header, data: &[u8], ) -> Pin<Box<dyn Future<Output = Result<Validation, Box<dyn Error + Send>>> + Send>>

Validate the announced header and its associated data.

§Note

Returning Validation::Failure will lead to a decrease of the peers reputation as it sent us invalid data.

The returned future should only resolve to an error if there was an internal error validating the block announcement. If the block announcement itself is invalid, this should always return Validation::Failure.

Implementors§

Source§

impl<B> BlockAnnounceValidator<B> for DefaultBlockAnnounceValidator
where B: Block,

impl<Block: BlockT, RCInterface> BlockAnnounceValidator<Block> for RequireSecondedInBlockAnnounce<Block, RCInterface>
where RCInterface: RelayChainInterface + Clone + 'static,