pub trait JustificationImport<B: BlockT> {
    type Error: Error + Send + 'static;
    fn import_justification(
        &mut self,
        hash: B::Hash,
        number: NumberFor<B>,
        justification: Justification
    ) -> Result<(), Self::Error>; fn on_start(&mut self) -> Vec<(B::Hash, NumberFor<B>)>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
{ ... } }
Expand description

Justification import trait

Associated Types

Required methods

Import a Block justification and finalize the given block.

Provided methods

Called by the import queue when it is started. Returns a list of justifications to request from the network.

Implementors