From 6b3a75917efad8a3557ef84b7fdc2ba449795be0 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Tue, 1 Oct 2024 16:34:31 +0300 Subject: [PATCH] fix(evm): propagate optimism and test features correctly (#11373) --- crates/evm/execution-types/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/evm/execution-types/Cargo.toml b/crates/evm/execution-types/Cargo.toml index bb5c17a9f5..db32ecc646 100644 --- a/crates/evm/execution-types/Cargo.toml +++ b/crates/evm/execution-types/Cargo.toml @@ -29,11 +29,11 @@ alloy-eips.workspace = true arbitrary.workspace = true bincode.workspace = true rand.workspace = true -reth-primitives = { workspace = true, features = ["test-utils"] } +reth-primitives = { workspace = true, features = ["arbitrary", "test-utils"] } [features] default = ["std"] -optimism = [] +optimism = ["reth-primitives/optimism", "revm/optimism"] serde = ["dep:serde", "reth-trie/serde", "revm/serde"] serde-bincode-compat = ["reth-primitives/serde-bincode-compat", "serde_with"] std = []