2019-03-04 05:39:37 +00:00
|
|
|
/// Syncing for lighthouse.
|
|
|
|
///
|
|
|
|
/// Stores the various syncing methods for the beacon chain.
|
|
|
|
mod simple_sync;
|
2019-02-27 23:24:27 +00:00
|
|
|
|
2019-03-04 05:39:37 +00:00
|
|
|
pub use crate::SimpleSync;
|
2019-02-27 23:24:27 +00:00
|
|
|
|
2019-03-04 05:39:37 +00:00
|
|
|
pub enum SyncMethod {
|
|
|
|
SimpleSync,
|
2019-02-27 23:24:27 +00:00
|
|
|
}
|