pub type TestXt<Call, Extra> = UncheckedExtrinsic<u64, Call, (), Extra>;Expand description
Extrinsic type with u64 accounts and mocked signatures, used in testing.
Aliased Type§
struct TestXt<Call, Extra> {
pub preamble: Preamble<u64, (), Extra>,
pub function: Call,
}Fields§
§preamble: Preamble<u64, (), Extra>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: CallThe function that should be called.