Trait reth_primitives::transaction::FillTxEnv

source ·
pub trait FillTxEnv {
    // Required method
    fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address);
}
Expand description

Implements behaviour to fill a [TxEnv] from another transaction.

Required Methods§

source

fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address)

Fills [TxEnv] with an Address and transaction.

Implementors§