From f6d5e8fea347842e72f8244a21d58596a375a9de Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Fri, 23 Dec 2022 16:14:53 +1100 Subject: [PATCH] Rename variable only --- beacon_node/http_api/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()