Skip to content
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

docs(inspectors): change serde to serde-json for TracerEip3155 #1285

Merged
merged 1 commit into from
Apr 10, 2024
Merged
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: 1 addition & 1 deletion documentation/src/crates/revm/inspector.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ There are several built-in inspectors in this module:
- `TracerEip3155`:
This is an inspector that conforms to the [EIP-3155](https://eips.ethereum.org/EIPS/eip-3155) standard for tracing Ethereum transactions.
It's used to generate detailed trace data of transaction execution, which can be useful for debugging, analysis, or for building tools that need to understand the inner workings of Ethereum transactions.
This is only available when both `std` and `serde` features are enabled.
This is only available when both `std` and `serde-json` features are enabled.

## Inspector trait

Expand Down
Loading