lighthouse-pulse/beacon_node/network/src/lib.rs
Paul Hauner ca18d4390a
Add first changes to syncing logic
- Adds testing framework
- Breaks out new `NetworkContext` object
2019-03-21 17:17:01 +11:00

10 lines
210 B
Rust

/// This crate provides the network server for Lighthouse.
pub mod beacon_chain;
pub mod error;
pub mod message_handler;
pub mod service;
pub mod sync;
pub use libp2p::NetworkConfig;
pub use service::Service;