pub trait CreateInherent<LocalCall>: CreateTransactionBase<LocalCall> {
// Required method
fn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic;
}
Expand description
Interface for creating an inherent.
Required Methods§
fn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic
fn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic
Create an inherent.
Object Safety§
This trait is not object safe.