pub trait Config: Config + Config {
    type Event: From<Event> + IsType<Self::Event> + Into<Self::Event>;
}
Expand description

Configuration trait of this pallet.

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

Required Associated Types§

source

type Event: From<Event> + IsType<Self::Event> + Into<Self::Event>

Implementors§