mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 19:51:47 +00:00
18 lines
456 B
Rust
18 lines
456 B
Rust
//! This provides the logic for syncing a chain when the local node is far behind it's current
|
|
//! peers.
|
|
|
|
mod batch;
|
|
mod chain;
|
|
mod chain_collection;
|
|
mod range;
|
|
mod sync_type;
|
|
|
|
pub use batch::{
|
|
BatchConfig, BatchInfo, BatchOperationOutcome, BatchPeers, BatchProcessingResult, BatchState,
|
|
};
|
|
#[cfg(test)]
|
|
pub use chain::BatchStateSummary;
|
|
pub use chain::{BatchId, ChainId, EPOCHS_PER_BATCH};
|
|
pub use range::RangeSync;
|
|
pub use sync_type::RangeSyncType;
|