chore: remove constants reexport (#12549)

This commit is contained in:
Matthias Seitz
2024-11-14 18:36:31 +01:00
committed by GitHub
parent bd29f82567
commit a7bb1d1fa3
14 changed files with 34 additions and 21 deletions

View File

@ -15,6 +15,7 @@ workspace = true
reth-chainspec.workspace = true
reth-consensus-common.workspace = true
reth-primitives.workspace = true
reth-primitives-traits.workspace = true
reth-consensus.workspace = true
# alloy

View File

@ -18,9 +18,8 @@ use reth_consensus_common::validation::{
validate_against_parent_timestamp, validate_block_pre_execution, validate_body_against_header,
validate_header_base_fee, validate_header_extradata, validate_header_gas,
};
use reth_primitives::{
constants::MINIMUM_GAS_LIMIT, BlockBody, BlockWithSenders, SealedBlock, SealedHeader,
};
use reth_primitives::{BlockBody, BlockWithSenders, SealedBlock, SealedHeader};
use reth_primitives_traits::constants::MINIMUM_GAS_LIMIT;
use std::{fmt::Debug, sync::Arc, time::SystemTime};
/// The bound divisor of the gas limit, used in update calculations.