pub trait TxData<Env>where
Env: TxEnv,{
// Required methods
fn is_no_call(&self) -> bool;
fn to_call_data_string(&self) -> ManagedBuffer<<Env as TxEnv>::Api>;
}
Expand description
Marks the data field of a transaction in Tx
.
Can be nothing, deploy data, call data, etc.