From bf7f709b51927aae74402736d5ba04f6383012c0 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Fri, 23 Dec 2022 14:52:03 +1100 Subject: [PATCH] Add missing route --- beacon_node/http_api/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/beacon_node/http_api/src/lib.rs b/beacon_node/http_api/src/lib.rs index 6caf99a07f..8d3f3cac33 100644 --- a/beacon_node/http_api/src/lib.rs +++ b/beacon_node/http_api/src/lib.rs @@ -3494,6 +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_blob_sidecars.boxed()) .or(get_events.boxed()), ) .boxed()