mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-24 08:18:25 +00:00
13 lines
244 B
Rust
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,
|
|
}
|