diff --git a/beacon_node/http_api/src/lib.rs b/beacon_node/http_api/src/lib.rs index 0eb261d96..e8ec77f87 100644 --- a/beacon_node/http_api/src/lib.rs +++ b/beacon_node/http_api/src/lib.rs @@ -3325,7 +3325,7 @@ pub fn serve( }); // GET lighthouse/beacon/blobs_sidecars/{block_id} - let get_blobs_sidecars = warp::path("lighthouse") + let get_lighthouse_blobs_sidecars = warp::path("lighthouse") .and(warp::path("beacon")) .and(warp::path("blobs_sidecars")) .and(block_id_or_err) @@ -3494,7 +3494,7 @@ pub fn serve( .or(get_lighthouse_attestation_performance.boxed()) .or(get_lighthouse_block_packing_efficiency.boxed()) .or(get_lighthouse_merge_readiness.boxed()) - .or(get_blobs_sidecars.boxed()) + .or(get_lighthouse_blobs_sidecars.boxed()) .or(get_events.boxed()), ) .boxed()