Skip to content

Commit

Permalink
header bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
eserilev committed Oct 26, 2023
1 parent 34a08a1 commit 219ad17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon_node/http_api/src/validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ 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, true)
build_response_v3(chain, block_response, endpoint_version, accept_header, false)
}
BeaconBlockResponseType::Blinded(block_response) => build_response_v3(
chain,
block_response,
endpoint_version,
accept_header,
false,
true,
),
}
}
Expand Down

0 comments on commit 219ad17

Please sign in to comment.