Skip to content

Commit f08db4a

Browse files
committed
reorded imports
1 parent 54016ef commit f08db4a

File tree

1 file changed

+3
-4
lines changed
  • crates/common/src/pbs/types

1 file changed

+3
-4
lines changed

crates/common/src/pbs/types/mod.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
use alloy::primitives::{B256, U256, b256};
22
use lh_types::{BlindedPayload, ExecPayload, MainnetEthSpec};
3+
pub use lh_types::{ForkName, ForkVersionedResponse};
34
use serde::{Deserialize, Serialize};
45

56
use crate::types::BlsPublicKey;
67

78
pub const EMPTY_TX_ROOT_HASH: B256 =
89
b256!("7ffe241ea60187fdb0187bfa22de35d1f9bed7ab061d9401fd47e34a54fbede1");
910

11+
pub type ExecutionRequests = lh_types::execution_requests::ExecutionRequests<MainnetEthSpec>;
12+
1013
/// Request object of POST `/eth/v1/builder/blinded_blocks`
1114
pub type SignedBlindedBeaconBlock =
1215
lh_types::signed_beacon_block::SignedBlindedBeaconBlock<MainnetEthSpec>;
@@ -37,10 +40,6 @@ pub type BuilderBidElectra = lh_types::builder_bid::BuilderBidElectra<MainnetEth
3740
/// `/eth/v1/builder/header/{slot}/{parent_hash}/{pubkey}`
3841
pub type GetHeaderResponse = lh_types::ForkVersionedResponse<SignedBuilderBid>;
3942

40-
pub use lh_types::{ForkName, ForkVersionedResponse};
41-
42-
pub type ExecutionRequests = lh_types::execution_requests::ExecutionRequests<MainnetEthSpec>;
43-
4443
/// Response params of GET
4544
/// `/eth/v1/builder/header/{slot}/{parent_hash}/{pubkey}`
4645
#[derive(Debug, Serialize, Deserialize, Clone)]

0 commit comments

Comments
 (0)