Skip to content

Commit

Permalink
fix(rpc-types): additionally export on eth namespace as well as * (a…
Browse files Browse the repository at this point in the history
…lloy-rs#866)

* additional export on eth namespace as well as root

* make sure to conditionally include
  • Loading branch information
zerosnacks authored Jun 11, 2024
1 parent 98a82b7 commit 7578618
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/rpc-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 7578618

Please sign in to comment.