Trait FillTxEnv
pub trait FillTxEnv<TxEnv> {
// Required method
fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address);
}
Expand description
Loads transaction into execution environment.
Required Methods§
fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address)
fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address)
Fills TxEnv
with an Address
and transaction.