referrerpolicy=no-referrer-when-downgrade
pub trait AncestryHelperWeightInfo<Header: HeaderT>: AncestryHelper<Header> {
    // Required methods
    fn extract_validation_context() -> Weight;
    fn is_non_canonical(
        proof: &<Self as AncestryHelper<Header>>::Proof,
    ) -> Weight;
}
Expand description

Weight information for the logic in AncestryHelper.

Required Methods§

source

fn extract_validation_context() -> Weight

Weight info for the AncestryHelper::extract_validation_context() method.

source

fn is_non_canonical(proof: &<Self as AncestryHelper<Header>>::Proof) -> Weight

Weight info for the AncestryHelper::is_non_canonical() method.

Object Safety§

This trait is not object safe.

Implementors§