1 2 3 4 5 6 7 8 9 10 11 12
//! Application/BlockChain Interface (ABCI)-related functionality. mod gas_info; mod msg_data; pub use self::{ gas_info::GasInfo, msg_data::{MsgData, MsgResponse, TxMsgData}, }; /// Transaction data. pub type Data = Vec<u8>;