61d5b592cb
16 lines
299 B
Rust
16 lines
299 B
Rust
#[macro_use]
|
|||
extern crate lazy_static;
|
|||
|
|||
/// This crate provides the network server for Lighthouse.
|
|||
|
pub mod error;
|
||
Add first changes to syncing logic
- Adds testing framework
- Breaks out new `NetworkContext` object
|
pub mod service;
|
||
|
|||
mod attestation_service;
|
|||
mod metrics;
|
|||
mod persisted_dht;
|
|||
mod router;
|
|||
mod sync;
|
|||
|
|||
|
pub use eth2_libp2p::NetworkConfig;
|
||
pub use service::{NetworkMessage, NetworkService};
|