pub type UncheckedExtrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;Expand description
Unchecked extrinsic type as expected by this runtime.
Aliased Type§
pub struct UncheckedExtrinsic {
pub preamble: Preamble<MultiAddress<AccountId32, ()>, MultiSignature, (CheckNonZeroSender<Runtime>, CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, MessengerExtension<Runtime>)>,
pub function: RuntimeCall,
}Fields§
§preamble: Preamble<MultiAddress<AccountId32, ()>, MultiSignature, (CheckNonZeroSender<Runtime>, CheckSpecVersion<Runtime>, CheckTxVersion<Runtime>, CheckGenesis<Runtime>, CheckMortality<Runtime>, CheckNonce<Runtime>, CheckWeight<Runtime>, ChargeTransactionPayment<Runtime>, MessengerExtension<Runtime>)>Information regarding the type of extrinsic this is (inherent or transaction) as well as
associated extension (Extension) data if it’s a transaction and a possible signature.
function: RuntimeCallThe function that should be called.