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, (CheckNonZeroSender<Runtime>, CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, DisablePallets, CheckHistorySeeder<Runtime>))>,
pub function: RuntimeCall,
}
Fields§
§signature: Option<(MultiAddress<AccountId32, ()>, MultiSignature, (CheckNonZeroSender<Runtime>, CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, DisablePallets, CheckHistorySeeder<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: RuntimeCall
The function that should be called.