diff --git a/consensus/types/src/beacon_state.rs b/consensus/types/src/beacon_state.rs index 826f4296de..2112946fd4 100644 --- a/consensus/types/src/beacon_state.rs +++ b/consensus/types/src/beacon_state.rs @@ -883,10 +883,6 @@ impl BeaconState { .safe_mul(E::InclusionListCommitteeSize::to_usize())?; let end = start.safe_add(E::InclusionListCommitteeSize::to_usize())?; - println!("start {:?}", start); - println!("end {:?}", end); - println!("slot {:?}", slot); - let mut i = start; let mut il_committee_indices = Vec::with_capacity(E::InclusionListCommitteeSize::to_usize()); diff --git a/consensus/types/src/chain_spec.rs b/consensus/types/src/chain_spec.rs index c36a9209a0..e0cdd61111 100644 --- a/consensus/types/src/chain_spec.rs +++ b/consensus/types/src/chain_spec.rs @@ -1400,8 +1400,7 @@ impl ChainSpec { impl Default for ChainSpec { fn default() -> Self { - Self::mainnet() - } + Self::mainnet() } } /// Exact implementation of the *config* object from the Ethereum spec (YAML/JSON).