We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The debug tree doesn't show values which are named as indexed. For example:
indexed
event NewCdp(address indexed guy, address indexed lad, bytes12 cdp);
It is just printing: NewCdp(0x000000000000000000000001)
NewCdp(0x000000000000000000000001)
If I remove indexed to those values, all of them are shown.
The text was updated successfully, but these errors were encountered:
I modified the trace for events recently, so I wonder if this is a regression. Do you remember if it used to output all the data?
indexed event args are kept separately from the unindexed events, in the topics of the log.
topics
Sorry, something went wrong.
Topics are now emitted.
No branches or pull requests
The debug tree doesn't show values which are named as
indexed
.For example:
event NewCdp(address indexed guy, address indexed lad, bytes12 cdp);
It is just printing:
NewCdp(0x000000000000000000000001)
If I remove
indexed
to those values, all of them are shown.The text was updated successfully, but these errors were encountered: