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