Files
lighthouse/beacon_node/network/src/sync/mod.rs
2019-09-07 00:28:54 +10:00

13 lines
244 B
Rust

mod manager;
/// Syncing for lighthouse.
///
/// Stores the various syncing methods for the beacon chain.
mod simple_sync;
pub use simple_sync::MessageProcessor;
/// Currently implemented sync methods.
pub enum SyncMethod {
SimpleSync,
}