Trait reth::primitives::transaction::FillTxEnv

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§

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

Fills TxEnv with an Address and transaction.

Implementors§