Skip to content

Commit

Permalink
clippy attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden authored and claravanstaden committed Dec 22, 2023
1 parent 082f544 commit c51b321
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ use static_assertions::const_assert;
pub mod mainnet;
pub mod minimal;

#[cfg(feature = "beacon-spec-minimal")]
#[cfg(all(feature = "beacon-spec-minimal", not(feature = "runtime-benchmarks")))]
pub use minimal::*;

#[cfg(not(feature = "beacon-spec-minimal"))]
#[cfg(any(not(feature = "beacon-spec-minimal"), feature = "runtime-benchmarks"))]
pub use mainnet::*;

// Generalized Indices
Expand Down

0 comments on commit c51b321

Please sign in to comment.