Type Alias sc_simnode::client::UncheckedExtrinsicFor
source · pub type UncheckedExtrinsicFor<T> = UncheckedExtrinsic<MultiAddress<<<T as ChainInfo>::Runtime as Config>::AccountId, <<T as ChainInfo>::Runtime as Config>::Nonce>, <<T as ChainInfo>::Runtime as Config>::RuntimeCall, MultiSignature, <T as ChainInfo>::SignedExtras>;Expand description
UncheckedExtrinsic type for Simnode
Aliased Type§
struct UncheckedExtrinsicFor<T> {
pub signature: Option<(MultiAddress<<<T as ChainInfo>::Runtime as Config>::AccountId, <<T as ChainInfo>::Runtime as Config>::Nonce>, MultiSignature, <T as ChainInfo>::SignedExtras)>,
pub function: <<T as ChainInfo>::Runtime as Config>::RuntimeCall,
}Fields§
§signature: Option<(MultiAddress<<<T as ChainInfo>::Runtime as Config>::AccountId, <<T as ChainInfo>::Runtime as Config>::Nonce>, MultiSignature, <T as ChainInfo>::SignedExtras)>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: <<T as ChainInfo>::Runtime as Config>::RuntimeCallThe function that should be called.