Type Alias moonbeam_runtime::CheckedExtrinsic
source · pub type CheckedExtrinsic = CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra, H160>;
Expand description
Extrinsic type that has already been checked.
Aliased Type§
struct CheckedExtrinsic {
pub signed: CheckedSignature<AccountId20, (CheckNonZeroSender<Runtime>, CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, CheckMetadataHash<Runtime>, StorageWeightReclaim<Runtime>), H160>,
pub function: RuntimeCall,
}
Fields§
§signed: CheckedSignature<AccountId20, (CheckNonZeroSender<Runtime>, CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, CheckMetadataHash<Runtime>, StorageWeightReclaim<Runtime>), H160>
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: RuntimeCall
The function that should be called.