chore: Bump revm to newest (#6357)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
rakita
2024-02-06 23:59:10 +01:00
committed by GitHub
parent 37a8780a4d
commit 13947e509b
37 changed files with 467 additions and 358 deletions

View File

@ -305,6 +305,8 @@ pub enum ForkSpec {
/// After Merge plus new PUSH0 opcode
#[serde(alias = "Merge+3855")]
MergePush0,
/// Cancun
Cancun,
/// Fork Spec which is unknown to us
#[serde(other)]
Unknown,
@ -335,6 +337,7 @@ impl From<ForkSpec> for ChainSpec {
ForkSpec::MergeMeterInitCode => spec_builder.paris_activated(),
ForkSpec::MergePush0 => spec_builder.paris_activated(),
ForkSpec::Shanghai => spec_builder.shanghai_activated(),
ForkSpec::Cancun => spec_builder.cancun_activated(),
ForkSpec::ByzantiumToConstantinopleAt5 | ForkSpec::Constantinople => {
panic!("Overridden with PETERSBURG")
}