Skip to content

Commit 2a99204

Browse files
authored
chore: upgrade revm to v40 (#1360)
* upgrade revm * fix upgrade * fix * upgrade to v38 * fix * upgrade to v40
1 parent 6f199a1 commit 2a99204

File tree

4 files changed

+63
-38
lines changed

4 files changed

+63
-38
lines changed

Cargo.lock

+44-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ strum_macros = "0.25"
6363
subtle = "2.4"
6464
tokio = { version = "1.13", features = ["macros", "rt-multi-thread"] }
6565
url = "2.2"
66-
revm-precompile = { git = "https://github.com/scroll-tech/revm", branch = "scroll-evm-executor/v36", default-features = false, features = ["std"] } # v36
67-
revm-primitives = { git = "https://github.com/scroll-tech/revm", branch = "scroll-evm-executor/v36", default-features = false, features = ["std"] } # v36
66+
revm-precompile = { git = "https://github.com/scroll-tech/revm", branch = "scroll-evm-executor/v40", default-features = false, features = ["std"] } # v40
67+
revm-primitives = { git = "https://github.com/scroll-tech/revm", branch = "scroll-evm-executor/v40", default-features = false, features = ["std"] } # v40
6868
c-kzg = "1.0.2"
6969

7070
[patch.crates-io]

bus-mapping/src/precompile.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! precompile helpers
22
33
use eth_types::{evm_types::GasCost, Address, ToBigEndian, Word};
4-
use revm_precompile::{Precompile, PrecompileError, Precompiles};
4+
use revm_precompile::{Precompile, PrecompileError, PrecompileErrors, Precompiles};
55
use strum_macros::EnumIter;
66

77
use crate::circuit_input_builder::{EcMulOp, EcPairingOp};
@@ -27,15 +27,15 @@ pub(crate) fn execute_precompiled(
2727
hex::encode(input)
2828
);
2929
let (return_data, gas_cost, is_oog, is_ok) = match precompile_fn(&input.to_vec().into(), gas) {
30-
Ok((gas_cost, return_value)) => (return_value.to_vec(), gas_cost, false, true),
31-
Err(err) => match err {
32-
PrecompileError::OutOfGas => (vec![], gas, true, false),
33-
PrecompileError::NotImplemented => (vec![], gas, false, false),
34-
_ => {
35-
log::warn!("unknown precompile err {err:?}");
36-
(vec![], gas, false, false)
37-
}
38-
},
30+
Ok(output) => (output.bytes.to_vec(), output.gas_used, false, true),
31+
Err(PrecompileErrors::Error(PrecompileError::OutOfGas)) => (vec![], gas, true, false),
32+
Err(PrecompileErrors::Error(PrecompileError::NotImplemented)) => {
33+
(vec![], gas, false, false)
34+
}
35+
Err(err) => {
36+
log::warn!("unknown precompile err {err:?}");
37+
(vec![], gas, false, false)
38+
}
3939
};
4040
log::trace!("called precompile with is_ok {is_ok} is_oog {is_oog}, gas_cost {gas_cost}, return_data len {}, return_data {}", return_data.len(), hex::encode(&return_data));
4141
(return_data, gas_cost, is_oog)

eth-types/src/l2_types.rs

+7-10
Original file line numberDiff line numberDiff line change
@@ -359,16 +359,13 @@ impl From<&TransactionTrace> for revm_primitives::TxEnv {
359359
.as_ref()
360360
.map(|v| {
361361
v.iter()
362-
.map(|e| {
363-
(
364-
e.address.0.into(),
365-
e.storage_keys
366-
.iter()
367-
.map(|s| {
368-
revm_primitives::U256::from_be_bytes(s.to_fixed_bytes())
369-
})
370-
.collect(),
371-
)
362+
.map(|e| revm_primitives::AccessListItem {
363+
address: e.address.0.into(),
364+
storage_keys: e
365+
.storage_keys
366+
.iter()
367+
.map(|s| s.to_fixed_bytes().into())
368+
.collect(),
372369
})
373370
.collect()
374371
})

0 commit comments

Comments
 (0)