chore: bump revm 19.2 (#13667)

This commit is contained in:
Matthias Seitz
2025-01-06 17:37:40 +01:00
committed by GitHub
parent bd345378b6
commit 09f2f4adfe
5 changed files with 7 additions and 7 deletions

View File

@ -196,7 +196,7 @@ pub trait RethL1BlockInfo {
/// - `input`: The calldata of the transaction.
/// - `is_deposit`: Whether or not the transaction is a deposit.
fn l1_tx_data_fee(
&self,
&mut self,
chain_spec: &ChainSpec,
timestamp: u64,
input: &[u8],
@ -219,7 +219,7 @@ pub trait RethL1BlockInfo {
impl RethL1BlockInfo for L1BlockInfo {
fn l1_tx_data_fee(
&self,
&mut self,
chain_spec: &ChainSpec,
timestamp: u64,
input: &[u8],

View File

@ -324,7 +324,7 @@ where
propagate,
} = outcome
{
let l1_block_info = self.block_info.l1_block_info.read().clone();
let mut l1_block_info = self.block_info.l1_block_info.read().clone();
let mut encoded = Vec::with_capacity(valid_tx.transaction().encoded_length());
let tx = valid_tx.transaction().clone_into_consensus();

View File

@ -107,7 +107,7 @@ impl OpReceiptFieldsBuilder {
mut self,
chain_spec: &OpChainSpec,
tx: &OpTransactionSigned,
l1_block_info: revm::L1BlockInfo,
mut l1_block_info: revm::L1BlockInfo,
) -> Result<Self, OpEthApiError> {
let raw_tx = tx.encoded_2718();
let timestamp = self.block_timestamp;