From cfc4511fe148296394c19c9ab3fb46f663218413 Mon Sep 17 00:00:00 2001 From: Jonathan Becker Date: Tue, 9 Apr 2024 20:03:21 -0400 Subject: [PATCH] docs(inspectors): change `serde` to `serde-json` for `TracerEip3155` (#1285) --- documentation/src/crates/revm/inspector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/crates/revm/inspector.md b/documentation/src/crates/revm/inspector.md index d17a4e3238..d9bdfe8b65 100644 --- a/documentation/src/crates/revm/inspector.md +++ b/documentation/src/crates/revm/inspector.md @@ -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