From cb5f56ec2653a8fe60ec317e6ae25c217013962d Mon Sep 17 00:00:00 2001 From: Eitan Seri-Levi Date: Thu, 26 Oct 2023 19:23:05 +0300 Subject: [PATCH] fmt --- beacon_node/http_api/src/validator.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/beacon_node/http_api/src/validator.rs b/beacon_node/http_api/src/validator.rs index 777ae573b1c..eca6536bb82 100644 --- a/beacon_node/http_api/src/validator.rs +++ b/beacon_node/http_api/src/validator.rs @@ -88,16 +88,16 @@ pub async fn produce_block_v3( })?; match block_response_type { - BeaconBlockResponseType::Full(block_response) => { - build_response_v3(chain, block_response, endpoint_version, accept_header, false) - } - BeaconBlockResponseType::Blinded(block_response) => build_response_v3( + BeaconBlockResponseType::Full(block_response) => build_response_v3( chain, block_response, endpoint_version, accept_header, - true, + false, ), + BeaconBlockResponseType::Blinded(block_response) => { + build_response_v3(chain, block_response, endpoint_version, accept_header, true) + } } }