referrerpolicy=no-referrer-when-downgrade

Type Alias substrate_test_runtime::Extrinsic

source ·
pub type Extrinsic = UncheckedExtrinsic<Address, RuntimeCall, Signature, TxExtension>;
Expand description

Unchecked extrinsic type as expected by this runtime.

Aliased Type§

struct Extrinsic {
    pub preamble: Preamble<CryptoBytes<32, Sr25519PublicTag>, CryptoBytes<64, (SignatureTag, Sr25519Tag)>, ((CheckNonce<Runtime>, CheckWeight<Runtime>), CheckSubstrateCall, CheckMetadataHash<Runtime>)>,
    pub function: RuntimeCall,
}

Fields§

§preamble: Preamble<CryptoBytes<32, Sr25519PublicTag>, CryptoBytes<64, (SignatureTag, Sr25519Tag)>, ((CheckNonce<Runtime>, CheckWeight<Runtime>), CheckSubstrateCall, CheckMetadataHash<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: RuntimeCall

The function that should be called.