mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-15 10:52:43 +00:00
* Store dht enrs on shutdown * Load enrs on startup and add tests * Remove enr_entries from behavior * Move all dht persisting logic to `NetworkService` * Move `PersistedDht` from eth2-libp2p to network crate * Add test to confirm dht persistence * Add logging * Remove extra call to beacon_chain persist * Expose only mutable `add_enr` method from behaviour * Fix tests * Fix merge errors
13 lines
321 B
Rust
13 lines
321 B
Rust
/// This crate provides the network server for Lighthouse.
|
|
pub mod error;
|
|
pub mod message_handler;
|
|
pub mod message_processor;
|
|
pub mod persisted_dht;
|
|
pub mod service;
|
|
pub mod sync;
|
|
|
|
pub use eth2_libp2p::NetworkConfig;
|
|
pub use message_processor::MessageProcessor;
|
|
pub use service::NetworkMessage;
|
|
pub use service::Service;
|