Skip to content

Commit

Permalink
finalized cancun spec (#6351)
Browse files Browse the repository at this point in the history
* finalized cancun spec

Signed-off-by: jflo <[email protected]>

* finalized cancun spec

Signed-off-by: jflo <[email protected]>

---------

Signed-off-by: jflo <[email protected]>
  • Loading branch information
jflo committed Jan 4, 2024
1 parent dbaa34d commit 7b27d3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public enum EvmSpecVersion {
/** Shanghai evm spec version. */
SHANGHAI(0, true, "Shanghai", "Finalized"),
/** Cancun evm spec version. */
CANCUN(0, false, "Cancun", "In Development"),
CANCUN(0, true, "Cancun", "Finalized"),
/** Prague evm spec version. */
PRAGUE(0, false, "Prague", "Placeholder"),
/** Osaka evm spec version. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class EVMExecutorTest {
@Test
void currentEVM() {
var subject = EVMExecutor.evm();
assertThat(subject.getEVMVersion()).isEqualTo(EvmSpecVersion.SHANGHAI);
assertThat(subject.getEVMVersion()).isEqualTo(EvmSpecVersion.CANCUN);
}

@ParameterizedTest
Expand Down

0 comments on commit 7b27d3b

Please sign in to comment.