Type Alias EventRecordOf

Source
pub type EventRecordOf<Runtime> = EventRecord<<Runtime as Config>::RuntimeEvent, <Runtime as Config>::Hash>;
Expand description

Alias for the event record type.

Aliased Type§

struct EventRecordOf<Runtime> {
    pub phase: Phase,
    pub event: <Runtime as Config>::RuntimeEvent,
    pub topics: Vec<<Runtime as Config>::Hash>,
}

Fields§

§phase: Phase

The phase of the block it happened in.

§event: <Runtime as Config>::RuntimeEvent

The event itself.

§topics: Vec<<Runtime as Config>::Hash>

The list of the topics this event has.