From 3eb4db20226dbe2029a64f8d3a2d61c56d5e3089 Mon Sep 17 00:00:00 2001 From: Eitan Seri- Levi Date: Mon, 9 Feb 2026 20:56:47 -0800 Subject: [PATCH] Instrument --- beacon_node/beacon_chain/src/block_production/gloas.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/beacon_node/beacon_chain/src/block_production/gloas.rs b/beacon_node/beacon_chain/src/block_production/gloas.rs index 615a74b233..22273d90f9 100644 --- a/beacon_node/beacon_chain/src/block_production/gloas.rs +++ b/beacon_node/beacon_chain/src/block_production/gloas.rs @@ -15,7 +15,9 @@ use state_processing::{ use state_processing::{VerifyOperation, state_advance::complete_state_advance}; use tracing::{Span, debug, debug_span, error, instrument, trace, warn}; use tree_hash::TreeHash; -use types::consts::gloas::{BID_VALUE_SELF_BUILD, BUILDER_INDEX_SELF_BUILD, EXECUTION_PAYMENT_TRUSTLESS_BUILD}; +use types::consts::gloas::{ + BID_VALUE_SELF_BUILD, BUILDER_INDEX_SELF_BUILD, EXECUTION_PAYMENT_TRUSTLESS_BUILD, +}; use types::{ Address, Attestation, AttestationElectra, AttesterSlashing, AttesterSlashingElectra, BeaconBlock, BeaconBlockBodyGloas, BeaconBlockGloas, BeaconState, BlockProductionVersion, @@ -103,6 +105,7 @@ impl BeaconChain { } // TODO(gloas) need to implement builder boost factor logic + #[instrument(level = "debug", skip_all)] pub async fn produce_block_on_state_gloas( self: &Arc, state: BeaconState,