pub type CheckedExtrinsic = CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;Expand description
Extrinsic type that has already been checked.
Aliased Type§
struct CheckedExtrinsic {
pub signed: Option<(AccountId32, (CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, ChargeSponsor<Runtime>, StorageWeightReclaim<Runtime>, CheckMetadataHash<Runtime>))>,
pub function: RuntimeCall,
}Fields§
§signed: Option<(AccountId32, (CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, ChargeSponsor<Runtime>, StorageWeightReclaim<Runtime>, CheckMetadataHash<Runtime>))>Who this purports to be from and the number of extrinsics have come before from the same signer, if anyone (note this is not a signature).
function: RuntimeCallThe function that should be called.