Trait pallet_authorship::FilterUncle [−][src]
pub trait FilterUncle<Header, Author> {
type Accumulator: Default;
fn filter_uncle(
header: &Header,
acc: &mut Self::Accumulator
) -> Result<Option<Author>, &'static str>;
}Expand description
Additional filtering on uncles that pass preliminary ancestry checks.
This should do work such as checking seals
Associated Types
type Accumulator: Default
type Accumulator: DefaultAn accumulator of data about uncles included.
In practice, this is used to validate uncles against others in the same block.
Required methods
fn filter_uncle(
header: &Header,
acc: &mut Self::Accumulator
) -> Result<Option<Author>, &'static str>
fn filter_uncle(
header: &Header,
acc: &mut Self::Accumulator
) -> Result<Option<Author>, &'static str>Do additional filtering on a seal-checked uncle block, with the accumulated filter.
Implementations on Foreign Types
type Accumulator = ()Implementors
impl<Header, Author, T> FilterUncle<Header, Author> for OnePerAuthorPerHeight<T, Header::Number> where
Header: HeaderT + PartialEq,
Header::Number: Ord,
Author: Clone + PartialEq + Ord,
T: VerifySeal<Header, Author>, impl<Header, Author, T: VerifySeal<Header, Author>> FilterUncle<Header, Author> for SealVerify<T>