Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ncitron committed Mar 6, 2025
1 parent 0ab6a35 commit d3374f2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ethereum/src/config/checkpoints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ impl CheckpointFallback {
let service = service.clone();
match Self::query_service(&service.endpoint).await {
Some(raw) => {
println!("{:?}", raw);
if raw.data.slots.is_empty() {
return Err(eyre::eyre!("no slots"));
}
Expand Down Expand Up @@ -198,8 +197,6 @@ impl CheckpointFallback {
.filter(|s| s.block_root.is_some())
.collect::<Vec<_>>();

println!("{:#?}", slots);

// Get the max epoch
let max_epoch_slot = slots.iter().max_by_key(|x| x.epoch).ok_or(eyre::eyre!(
"Failed to find max epoch from checkpoint slots"
Expand Down

0 comments on commit d3374f2

Please sign in to comment.