pub type UncheckedExtrinsic<Call, TransactionExt> = UncheckedExtrinsic<MultiAddress<<<MultiSignature as Verify>::Signer as IdentifyAccount>::AccountId, ()>, EncodedOrDecodedCall<Call>, MultiSignature, TransactionExt>;Expand description
Unchecked Extrinsic type.
Aliased Type§
pub struct UncheckedExtrinsic<Call, TransactionExt> {
pub preamble: Preamble<MultiAddress<AccountId32, ()>, MultiSignature, TransactionExt>,
pub function: EncodedOrDecodedCall<Call>,
}Fields§
§preamble: Preamble<MultiAddress<AccountId32, ()>, MultiSignature, TransactionExt>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: EncodedOrDecodedCall<Call>The function that should be called.