pub trait Config: Config {
    type FindAuthor: FindAuthor<Self::AccountId>;
    type EventHandler: EventHandler<Self::AccountId, Self::BlockNumber>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Required Associated Types§

Find the author of a block.

An event handler for authored blocks.

Implementors§