From 7578618d61213ea832c40c7e613f1d644ce08f27 Mon Sep 17 00:00:00 2001 From: zerosnacks <95942363+zerosnacks@users.noreply.github.com> Date: Tue, 11 Jun 2024 13:50:56 +0200 Subject: [PATCH] fix(rpc-types): additionally export on `eth` namespace as well as * (#866) * additional export on eth namespace as well as root * make sure to conditionally include --- crates/rpc-types/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/rpc-types/src/lib.rs b/crates/rpc-types/src/lib.rs index 6232d1ac2db..ca236c8c5f3 100644 --- a/crates/rpc-types/src/lib.rs +++ b/crates/rpc-types/src/lib.rs @@ -22,7 +22,9 @@ pub use alloy_rpc_types_beacon as beacon; pub use alloy_rpc_types_engine as engine; #[cfg(feature = "eth")] -pub use alloy_rpc_types_eth::*; +pub use alloy_rpc_types_eth as eth; +#[cfg(feature = "eth")] +pub use eth::*; #[cfg(feature = "trace")] pub use alloy_rpc_types_trace as trace;