-
Notifications
You must be signed in to change notification settings - Fork 310
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
Deprecate tracing API #376
Conversation
d97f3a7
to
9b419e0
Compare
43e6f50
to
147fd1a
Compare
include/evmc/evmc.h
Outdated
*/ | ||
EVMC_DEPRECATED |
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.
We cannot put [[deprecated]] attribute here because it makes the evmc_instance
non-constuctable in some compilers: https://circleci.com/gh/ethereum/evmc/13261.
147fd1a
to
becf562
Compare
include/evmc/evmc.h
Outdated
@@ -991,6 +991,10 @@ struct evmc_instance | |||
* Optional pointer to function setting the EVM instruction tracer. | |||
* | |||
* If the EVM does not support this feature the pointer can be NULL. | |||
* | |||
* @deprecated | |||
* The tracing API from EVMC 6 has been deprecated as there have been some |
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.
It's not deprecated in 6.2, should this say from EVMC 6.3
?
What about |
We can only use |
becf562
to
0569d97
Compare
0569d97
to
b12e24f
Compare
Closes #260.