diff --git a/beacon_node/network/src/sync/block_sidecar_coupling.rs b/beacon_node/network/src/sync/block_sidecar_coupling.rs index 1ef2320062..6df05921c2 100644 --- a/beacon_node/network/src/sync/block_sidecar_coupling.rs +++ b/beacon_node/network/src/sync/block_sidecar_coupling.rs @@ -612,12 +612,18 @@ impl RangeBlockComponentsRequest { if payload_iter.next().is_some() { let remaining = payload_iter.count() + 1; - debug!(remaining, "Received payload envelopes that don't pair with blocks"); + debug!( + remaining, + "Received payload envelopes that don't pair with blocks" + ); } if !data_columns_by_block.is_empty() { let remaining_roots = data_columns_by_block.keys().collect::>(); - debug!(?remaining_roots, "Not all columns consumed for Gloas blocks"); + debug!( + ?remaining_roots, + "Not all columns consumed for Gloas blocks" + ); } Ok(range_sync_blocks)