From 34b4c46e7585d2dffbbfa59bf92d89a79e0cdd25 Mon Sep 17 00:00:00 2001 From: Eitan Seri- Levi Date: Mon, 9 Feb 2026 21:37:22 -0800 Subject: [PATCH] Reorder --- beacon_node/beacon_chain/src/block_production/gloas.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/beacon_node/beacon_chain/src/block_production/gloas.rs b/beacon_node/beacon_chain/src/block_production/gloas.rs index 4481903671..a28a3c5693 100644 --- a/beacon_node/beacon_chain/src/block_production/gloas.rs +++ b/beacon_node/beacon_chain/src/block_production/gloas.rs @@ -33,6 +33,9 @@ use crate::{ ProduceBlockVerification, graffiti_calculator::GraffitiSettings, metrics, }; +type ConsensusBlockValue = u64; +type BlockProductionResult = (BeaconBlock>, ConsensusBlockValue); + pub struct PartialBeaconBlock { slot: Slot, proposer_index: u64, @@ -59,8 +62,6 @@ pub struct ExecutionPayloadData { pub slot: Slot, pub state_root: Hash256, } -type ConsensusBlockValue = u64; -type BlockProductionResult = (BeaconBlock>, ConsensusBlockValue); impl BeaconChain { pub async fn produce_block_with_verification_gloas(