Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
eserilev committed Oct 26, 2023
1 parent 219ad17 commit cb5f56e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions beacon_node/http_api/src/validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,16 @@ pub async fn produce_block_v3<T: BeaconChainTypes>(
})?;

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)
}
}
}

Expand Down

0 comments on commit cb5f56e

Please sign in to comment.