Skip to content

Commit

Permalink
Enable Berlin/Istanbul
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita committed Mar 15, 2022
1 parent 0fd7300 commit 3497e8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ indicatif = "0.16"
plain_hasher = "0.2"
primitive-types = { version = "0.11", features = ["rlp", "serde"] }

revm = { path = "../../crates/revm", version = "1.1", default-features = false, features = ["web3db","std","k256"] }
revm = { path = "../../crates/revm", version = "1.1", default-features = false, features = ["web3db","std","secp256k1"] }
rlp = { version = "0.5", default-features = false }
serde = "1.0"
serde_derive = "1.0"
Expand Down
7 changes: 4 additions & 3 deletions bins/revme/src/statetest/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ pub fn execute_test_suit(path: &Path, elapsed: &Arc<Mutex<Duration>>) -> Result<
if path.file_name() == Some(OsStr::new("CREATE2_HighNonceDelegatecall.json")) {
return Ok(());
}
// /*
// Test that take a lot of time so we are going to skip them
/*
Test that take a lot of time so we are going to skip them
*/
if path.file_name() == Some(OsStr::new("loopExp.json")) {
return Ok(());
}
Expand Down Expand Up @@ -159,7 +160,7 @@ pub fn execute_test_suit(path: &Path, elapsed: &Arc<Mutex<Duration>>) -> Result<
for (spec_name, tests) in unit.post {
if !matches!(
spec_name,
SpecName::London // | SpecName::Berlin | SpecName::Istanbul
SpecName::London | SpecName::Berlin | SpecName::Istanbul
) {
continue;
}
Expand Down

0 comments on commit 3497e8f

Please sign in to comment.