pub trait PreCommitActions<Block: BlockT> {
    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§

Actions to be performed on block import.

Actions to be performed on block finalization.

Implementors§