diff --git a/beacon_node/beacon_chain/src/state_advance_timer.rs b/beacon_node/beacon_chain/src/state_advance_timer.rs index f73223fa5..3d21a14c8 100644 --- a/beacon_node/beacon_chain/src/state_advance_timer.rs +++ b/beacon_node/beacon_chain/src/state_advance_timer.rs @@ -186,7 +186,7 @@ async fn state_advance_timer( head_slot, }) => debug!( log, - "Refused to advance head state"; + "Refused to advance head state. Chain may be syncing or lagging too far behind"; "head_slot" => head_slot, "current_slot" => current_slot, ), diff --git a/beacon_node/http_api/src/lib.rs b/beacon_node/http_api/src/lib.rs index 30a222145..e5336ef6a 100644 --- a/beacon_node/http_api/src/lib.rs +++ b/beacon_node/http_api/src/lib.rs @@ -1125,11 +1125,8 @@ pub fn serve( .map(|()| warp::reply()) }, ); - /* - * beacon/blocks - */ - // POST beacon/blocks + // POST beacon/blinded_blocks let post_beacon_blinded_blocks = eth_v1 .and(warp::path("beacon")) .and(warp::path("blinded_blocks")) diff --git a/beacon_node/network/src/sync/network_context.rs b/beacon_node/network/src/sync/network_context.rs index 978bd69d0..73eb64322 100644 --- a/beacon_node/network/src/sync/network_context.rs +++ b/beacon_node/network/src/sync/network_context.rs @@ -178,7 +178,7 @@ impl SyncNetworkContext { ExpectedBatchTy::OnlyBlock => { trace!( self.log, - "Sending BlocksByRange Request"; + "Sending BlocksByRange request"; "method" => "BlocksByRange", "count" => request.count, "peer" => %peer_id, @@ -197,7 +197,7 @@ impl SyncNetworkContext { ExpectedBatchTy::OnlyBlockBlobs => { debug!( self.log, - "Sending BlockBlock by range request"; + "Sending BlocksByRange and BlobsByRange requests"; "method" => "Mixed by range request", "count" => request.count, "peer" => %peer_id, @@ -245,7 +245,7 @@ impl SyncNetworkContext { ExpectedBatchTy::OnlyBlock => { trace!( self.log, - "Sending backfill BlocksByRange Request"; + "Sending backfill BlocksByRange request"; "method" => "BlocksByRange", "count" => request.count, "peer" => %peer_id, @@ -264,7 +264,7 @@ impl SyncNetworkContext { ExpectedBatchTy::OnlyBlockBlobs => { debug!( self.log, - "Sending BlockBlock by range request"; + "Sending backfill BlocksByRange and BlobsByRange requests"; "method" => "Mixed by range request", "count" => request.count, "peer" => %peer_id, @@ -272,7 +272,7 @@ impl SyncNetworkContext { // create the shared request id. This is fine since the rpc handles substream ids. let id = self.next_id(); - let request_id = RequestId::Sync(SyncRequestId::RangeSidecarPair { id }); + let request_id = RequestId::Sync(SyncRequestId::BackFillSidecarPair { id }); // Create the blob request based on the blob request. let blobs_request = Request::BlobsByRange(BlobsByRangeRequest {