jade_testing/
extrinsic.rs

1//! extrinsic context
2
3use service::OpaqueHash;
4
5/// Extrinsic context
6pub struct Extrinsic {
7    /// The extrinsic
8    pub extrinsic: Vec<u8>,
9
10    /// The extrinsic hash
11    pub hash: OpaqueHash,
12
13    /// The extrinsic length
14    pub len: u32,
15}