pub trait HeadSupportsParachains {
    fn head_supports_parachains<'life0, 'life1, 'async_trait>(
        &'life0 self,
        head: &'life1 Hash
    ) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait
; }
Expand description

Whether a header supports parachain consensus or not.

Required Methods§

Return true if the given header supports parachain consensus. Otherwise, false.

Implementations on Foreign Types§

Implementors§