We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6166b7c commit dc3f870Copy full SHA for dc3f870
beacon_node/execution_layer/src/lib.rs
@@ -1912,12 +1912,14 @@ impl<E: EthSpec> ExecutionLayer<E> {
1912
if let Some(builder) = self.builder() {
1913
let (payload_result, duration) =
1914
timed_future(metrics::POST_BLINDED_PAYLOAD_BUILDER, async {
1915
- if builder.is_ssz_enabled() {
1916
- debug!(
1917
- self.log(),
1918
- "Sending submit_blinded_block";
1919
- "ssz" => "true"
1920
- );
+ let ssz_enabled = builder.is_ssz_enabled();
+ debug!(
+ self.log(),
+ "Calling submit_blinded_block on builder";
+ "block_root" => ?block_root,
+ "ssz" => ssz_enabled
1921
+ );
1922
+ if ssz_enabled {
1923
builder
1924
.post_builder_blinded_blocks_ssz(block)
1925
.await
0 commit comments