Add an EVM version filter (#136)

* Add an EVM version filter

* Update naming
This commit is contained in:
Omar
2025-08-12 13:19:59 +03:00
committed by GitHub
parent f67a9bf643
commit 9b40c9b9e3
10 changed files with 176 additions and 1 deletions
+5
View File
@@ -32,6 +32,7 @@ use alloy::{
signers::local::PrivateKeySigner,
};
use anyhow::Context;
use revive_common::EVMVersion;
use tracing::{Instrument, Level};
use revive_dt_common::{fs::clear_directory, futures::poll};
@@ -579,6 +580,10 @@ impl Node for GethNode {
Some(targets) => targets.iter().any(|str| str.as_str() == "evm"),
}
}
fn evm_version() -> EVMVersion {
EVMVersion::Cancun
}
}
impl Drop for GethNode {