Skip to content

Commit

Permalink
fix feature flags (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wizdave97 authored Oct 2, 2023
1 parent c22405c commit 9438b05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions primitives/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ pub const NEXT_SYNC_COMMITTEE_INDEX_LOG2: u64 = 5;
pub const BLOCK_ROOTS_INDEX_LOG2: u64 = 5;
pub const HISTORICAL_ROOTS_INDEX_LOG2: u64 = 5;

#[cfg(feature = "testnet")]
#[cfg(feature = "goerli")]
pub use goerli::*;

#[cfg(feature = "mainnet")]
pub use mainnet::*;

use crate::ssz::ByteVector;
#[cfg(all(not(feature = "mainnet"), not(feature = "testnet")))]
#[cfg(all(not(feature = "mainnet"), not(feature = "goerli")))]
pub use devnet::*;

#[cfg(feature = "goerli")]
Expand Down Expand Up @@ -115,7 +115,7 @@ pub mod mainnet {
pub const CAPELLA_FORK_VERSION: Version = hex_literal::hex!("03000000");
}

#[cfg(all(not(feature = "mainnet"), not(feature = "testnet")))]
#[cfg(all(not(feature = "mainnet"), not(feature = "goerli")))]
pub mod devnet {
use super::*;
use hex_literal::hex;
Expand Down

0 comments on commit 9438b05

Please sign in to comment.