referrerpolicy=no-referrer-when-downgrade

Trait frame_system::offchain::CreateTransactionBase

source ·
pub trait CreateTransactionBase<LocalCall> {
    type Extrinsic: ExtrinsicLike + Encode;
    type RuntimeCall: From<LocalCall> + Encode;
}
Expand description

Common interface for the CreateTransaction trait family to unify the Call type.

Required Associated Types§

source

type Extrinsic: ExtrinsicLike + Encode

The extrinsic.

source

type RuntimeCall: From<LocalCall> + Encode

The runtime’s call type.

This has additional bound to be able to be created from pallet-local Call types.

Implementors§