mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: rename reth_primitives::RecoveredTx functions to match alloy::Recovered (#13663)
This commit is contained in:
@ -285,7 +285,7 @@ where
|
||||
}
|
||||
|
||||
// Configure the environment for the tx.
|
||||
*evm.tx_mut() = evm_config.tx_env(tx.as_signed(), tx.signer());
|
||||
*evm.tx_mut() = evm_config.tx_env(tx.tx(), tx.signer());
|
||||
|
||||
let ResultAndState { result, state } = match evm.transact() {
|
||||
Ok(res) => res,
|
||||
@ -354,7 +354,7 @@ where
|
||||
|
||||
// append sender and transaction to the respective lists
|
||||
executed_senders.push(tx.signer());
|
||||
executed_txs.push(tx.into_signed());
|
||||
executed_txs.push(tx.into_tx());
|
||||
}
|
||||
|
||||
// check if we have a better block
|
||||
|
||||
Reference in New Issue
Block a user