From d59a1c63fb67d3520ebe5e99937afce3a45dd126 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Thu, 8 Dec 2022 09:18:56 -0500 Subject: [PATCH] small cleanup --- Makefile | 2 +- beacon_node/http_api/src/lib.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a15315958..5aee24a22 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ install: # Builds the lcli binary in release (optimized). install-lcli: - cargo install --path lcli --force --locked --features "$(FEATURES),$(EF_TEST_FEATURES)" --profile "$(PROFILE)" + cargo install --path lcli --force --locked --features "$(FEATURES)" --profile "$(PROFILE)" # The following commands use `cross` to build a cross-compile. # diff --git a/beacon_node/http_api/src/lib.rs b/beacon_node/http_api/src/lib.rs index e02f992a2..f677df736 100644 --- a/beacon_node/http_api/src/lib.rs +++ b/beacon_node/http_api/src/lib.rs @@ -1107,8 +1107,6 @@ pub fn serve( */ // POST beacon/blocks - - // TODO: THIS IS NOT THE RIGHT CODE let post_beacon_blocks = eth_v1 .and(warp::path("beacon")) .and(warp::path("blocks"))