Skip to content

Commit

Permalink
Fix imports for beta compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Apr 4, 2024
1 parent 3c116c7 commit 5cc51f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use super::signature_sets::Error as SignatureSetError;
use crate::{ContextError, EpochCacheError};
use crate::ContextError;
use merkle_proof::MerkleTreeError;
use safe_arith::ArithError;
use ssz::DecodeError;
Expand Down
5 changes: 1 addition & 4 deletions consensus/types/src/beacon_state.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use self::committee_cache::get_active_validator_indices;
use crate::historical_summary::HistoricalSummary;
use crate::test_utils::TestRandom;
use crate::*;
use compare_fields::CompareFields;
Expand All @@ -11,8 +12,6 @@ use safe_arith::{ArithError, SafeArith};
use serde::{Deserialize, Serialize};
use ssz::{ssz_encode, Decode, DecodeError, Encode};
use ssz_derive::{Decode, Encode};
use ssz_types::{typenum::Unsigned, BitVector};
use std::convert::TryInto;
use std::hash::Hash;
use std::{fmt, mem, sync::Arc};
use superstruct::superstruct;
Expand All @@ -29,8 +28,6 @@ pub use crate::beacon_state::balance::Balance;
pub use crate::beacon_state::exit_cache::ExitCache;
pub use crate::beacon_state::progressive_balances_cache::*;
pub use crate::beacon_state::slashings_cache::SlashingsCache;
use crate::epoch_cache::EpochCache;
use crate::historical_summary::HistoricalSummary;
pub use clone_config::CloneConfig;
pub use eth_spec::*;
pub use iter::BlockRootsIter;
Expand Down

0 comments on commit 5cc51f3

Please sign in to comment.