Skip to content

Commit

Permalink
chore: bump revm 19.2 (#13667)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Jan 6, 2025
1 parent bd34537 commit 09f2f4a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ reth-trie-sparse = { path = "crates/trie/sparse" }
reth-zstd-compressors = { path = "crates/storage/zstd-compressors", default-features = false }

# revm
revm = { version = "19.0.0", default-features = false }
revm = { version = "19.2.0", default-features = false }
revm-primitives = { version = "15.1.0", default-features = false }
revm-interpreter = { version = "15.0.0", default-features = false }
revm-inspectors = "0.14.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/optimism/evm/src/l1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand All @@ -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],
Expand Down
2 changes: 1 addition & 1 deletion crates/optimism/node/src/txpool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion crates/optimism/rpc/src/eth/receipt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 09f2f4a

Please sign in to comment.