lighthouse/beacon_node/network/src/sync/mod.rs
2019-03-24 18:34:44 +11:00

13 lines
243 B
Rust

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