mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 03:51:22 +00:00
f85485884f
## Issue Addressed NA ## Proposed Changes Moves beacon block processing over to the newly-added `GossipProcessor`. This moves the task off the core executor onto the blocking one. ## Additional Info - With this PR, gossip blocks are being ignored during sync.
17 lines
321 B
Rust
17 lines
321 B
Rust
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
/// This crate provides the network server for Lighthouse.
|
|
pub mod error;
|
|
pub mod service;
|
|
|
|
mod attestation_service;
|
|
mod beacon_processor;
|
|
mod metrics;
|
|
mod persisted_dht;
|
|
mod router;
|
|
mod sync;
|
|
|
|
pub use eth2_libp2p::NetworkConfig;
|
|
pub use service::{NetworkMessage, NetworkService};
|