From def287730dedc8e5ea300dd9d6184fa527dc8ffa Mon Sep 17 00:00:00 2001 From: Eitan Seri-Levi Date: Thu, 12 Jun 2025 12:54:43 +0300 Subject: [PATCH] fix logs --- consensus/types/src/beacon_state.rs | 4 ---- consensus/types/src/chain_spec.rs | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) 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).