Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/tools/ossfuzz/protoToYul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ EVMVersion ProtoConverter::evmVersionMapping(Program_Version const& _ver)
return EVMVersion::london();
case Program::PARIS:
return EVMVersion::paris();
case Program::SHANGHAI:
return EVMVersion::shanghai();
}
}

Expand Down
1 change: 1 addition & 0 deletions test/tools/ossfuzz/yulProto.proto
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ message Program {
BERLIN = 7;
LONDON = 8;
PARIS = 9;
SHANGHAI = 10;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not add Cancun too?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added cancun here #14781

Under the assumption that this would get merged first, and then the other one :-)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean, we already had Cancun on develop so there would have been no problem adding it already in this PR. But since blobbasefee is merged now, I guess it does not matter now.

}
oneof program_oneof {
Block block = 1;
Expand Down