Type Alias PreimageEvent

Source
pub type PreimageEvent = PreimageEvent;

Aliased Type§

enum PreimageEvent {
    Noted {
        hash: H256,
    },
    Requested {
        hash: H256,
    },
    Cleared {
        hash: H256,
    },
}

Variants§

§

Noted

A preimage has been noted.

Fields

§hash: H256
§

Requested

A preimage has been requested.

Fields

§hash: H256
§

Cleared

A preimage has ben cleared.

Fields

§hash: H256