-
Notifications
You must be signed in to change notification settings - Fork 20.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eth/tracers: hex-encode returnValue #31216
base: master
Are you sure you want to change the base?
Conversation
.github/workflows/go.yml
Outdated
@@ -23,7 +23,7 @@ jobs: | |||
- name: Set up Go | |||
uses: actions/setup-go@v5 | |||
with: | |||
go-version: 1.24.0 | |||
go-version: 1.23.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason for this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right I don't need that anymore :) reverted
This reverts commit 8c2c475.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, we need to write it very explicitly into the release notes though since this is a breaking change and a few projects rely on this (e.g. goevmlab)
This is a breaking change to the opcode tracer. The top-level
returnValue
field of a trace will be now hex-encoded. If the return data is empty, this field will contain "0x".Fixes #31196