Type Alias distance_oracle::runtime::system::Event

source ·
pub type Event = Event;

Aliased Type§

enum Event {
    ExtrinsicSuccess {
        dispatch_info: DispatchInfo,
    },
    ExtrinsicFailed {
        dispatch_error: DispatchError,
        dispatch_info: DispatchInfo,
    },
    CodeUpdated,
    NewAccount {
        account: AccountId32,
    },
    KilledAccount {
        account: AccountId32,
    },
    Remarked {
        sender: AccountId32,
        hash: H256,
    },
    UpgradeAuthorized {
        code_hash: H256,
        check_version: bool,
    },
}

Variants§

§

ExtrinsicSuccess

Fields

§dispatch_info: DispatchInfo
§

ExtrinsicFailed

Fields

§dispatch_error: DispatchError
§dispatch_info: DispatchInfo
§

CodeUpdated

§

NewAccount

Fields

§account: AccountId32
§

KilledAccount

Fields

§account: AccountId32
§

Remarked

Fields

§sender: AccountId32
§hash: H256
§

UpgradeAuthorized

Fields

§code_hash: H256
§check_version: bool