Type Alias seedling_runtime::UncheckedExtrinsic
source · pub type UncheckedExtrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;Expand description
Unchecked extrinsic type as expected by this runtime.
Aliased Type§
struct UncheckedExtrinsic {
pub signature: Option<(MultiAddress<AccountId32, ()>, MultiSignature, (CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckOnlySudoAccount<Runtime>))>,
pub function: RuntimeCall,
}Fields§
§signature: Option<(MultiAddress<AccountId32, ()>, MultiSignature, (CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckOnlySudoAccount<Runtime>))>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: RuntimeCallThe function that should be called.