File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ jobs:
463
463
branch : evmc-v11.0.0-alpha.1
464
464
commit : evmc-v11.0.0-alpha.1
465
465
- download_execution_tests :
466
- rev : v13
466
+ rev : v13.1
467
467
- run :
468
468
name : " Silkworm-driven blockchain tests (Advanced)"
469
469
working_directory : ~/build
@@ -500,7 +500,7 @@ jobs:
500
500
bin/evmone-statetest ~/spec-tests/fixtures/state_tests
501
501
502
502
- download_execution_tests :
503
- rev : v13
503
+ rev : v13.1
504
504
- run :
505
505
name : " State tests"
506
506
working_directory : ~/build
Original file line number Diff line number Diff line change @@ -21,18 +21,16 @@ evmc_revision to_rev(std::string_view s)
21
21
return EVMC_BYZANTIUM;
22
22
if (s == " Constantinople" )
23
23
return EVMC_CONSTANTINOPLE;
24
- if (s == " ConstantinopleFix" )
24
+ if (s == " Petersburg " || s == " ConstantinopleFix" )
25
25
return EVMC_PETERSBURG;
26
26
if (s == " Istanbul" )
27
27
return EVMC_ISTANBUL;
28
28
if (s == " Berlin" )
29
29
return EVMC_BERLIN;
30
30
if (s == " London" || s == " ArrowGlacier" )
31
31
return EVMC_LONDON;
32
- if (s == " Merge" )
32
+ if (s == " Paris " || s == " Merge" )
33
33
return EVMC_PARIS;
34
- if (s == " Merge+3855" ) // PUSH0
35
- return EVMC_SHANGHAI;
36
34
if (s == " Shanghai" )
37
35
return EVMC_SHANGHAI;
38
36
if (s == " Cancun" )
You can’t perform that action at this time.
0 commit comments