Type Alias polymesh_api_tester::SystemEvent

source ·
pub type SystemEvent = SystemEvent;

Aliased Type§

enum SystemEvent {
    ExtrinsicSuccess {
        dispatch_info: DispatchInfo,
    },
    ExtrinsicFailed {
        dispatch_error: DispatchError,
        dispatch_info: DispatchInfo,
    },
    CodeUpdated,
    NewAccount {
        account: AccountId,
    },
    KilledAccount {
        account: AccountId,
    },
    Remarked {
        sender: AccountId,
        hash: H256,
    },
}

Variants§

§

ExtrinsicSuccess

An extrinsic completed successfully.

Fields

§dispatch_info: DispatchInfo
§

ExtrinsicFailed

An extrinsic failed.

Fields

§dispatch_error: DispatchError
§dispatch_info: DispatchInfo
§

CodeUpdated

:code was updated.

§

NewAccount

A new account was created.

Fields

§account: AccountId
§

KilledAccount

An account was reaped.

Fields

§account: AccountId
§

Remarked

On on-chain remark happened.

Fields

§sender: AccountId
§hash: H256