Type Alias UncheckedExtrinsic

Source
pub type UncheckedExtrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;
Expand description

Unchecked extrinsic type as expected by this runtime.

Aliased Type§

pub struct UncheckedExtrinsic {
    pub signature: Option<(MultiAddress<AccountId32, ()>, MultiSignature, DisallowSigned)>,
    pub function: RuntimeCall,
}

Fields§

§signature: Option<(MultiAddress<AccountId32, ()>, MultiSignature, DisallowSigned)>

The signature, address, number of extrinsics have come before from the same signer and an era describing the longevity of this transaction, if this is a signed extrinsic.

None if it is unsigned or an inherent.

§function: RuntimeCall

The function that should be called.