pub trait CreateUnsigned<LocalCall>: CreateTransactionBase<LocalCall> {
// Required method
fn create_unsigned(call: Self::RuntimeCall) -> Self::Extrinsic;
}
Expand description
Interface for creating an unsigned general extrinsic
Required Methods§
Sourcefn create_unsigned(call: Self::RuntimeCall) -> Self::Extrinsic
fn create_unsigned(call: Self::RuntimeCall) -> Self::Extrinsic
Create an unsigned extrinsic.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.