subspace_runtime_primitives

Trait CreateUnsigned

Source
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§

Source

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.

Implementors§