More consensus/types re-export cleanup (#8665)

Remove more of the temporary re-exports from `consensus/types`


Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
Mac L
2026-01-16 08:43:05 +04:00
committed by GitHub
parent acc746d947
commit 3903e1c67f
39 changed files with 45 additions and 100 deletions

View File

@@ -33,9 +33,7 @@ pub use peerdb::sync_status::{SyncInfo, SyncStatus};
use std::collections::{HashMap, HashSet, hash_map::Entry};
use std::net::IpAddr;
use strum::IntoEnumIterator;
use types::data_column_custody_group::{
CustodyIndex, compute_subnets_from_custody_group, get_custody_groups,
};
use types::data::{CustodyIndex, compute_subnets_from_custody_group, get_custody_groups};
/// Unified peer subnet information structure for pruning logic.
struct PeerSubnetInfo<E: EthSpec> {

View File

@@ -15,7 +15,7 @@ use std::{
};
use sync_status::SyncStatus;
use tracing::{debug, error, trace, warn};
use types::data_column_custody_group::compute_subnets_for_node;
use types::data::compute_subnets_for_node;
use types::{ChainSpec, DataColumnSubnetId, Epoch, EthSpec, Hash256, Slot};
pub mod client;