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(