pub trait PreCommitActions<Block: BlockT> {
    // Required methods
    fn register_import_action(&self, op: OnImportAction<Block>);
    fn register_finality_action(&self, op: OnFinalityAction<Block>);
}
Expand description

Interface to perform auxiliary actions before committing a block import or finality operation.

Required Methods§

source

fn register_import_action(&self, op: OnImportAction<Block>)

Actions to be performed on block import.

source

fn register_finality_action(&self, op: OnFinalityAction<Block>)

Actions to be performed on block finalization.

Implementors§