lighthouse/beacon_node/beacon_chain/src/lib.rs

8 lines
225 B
Rust
Raw Normal View History

mod attestation_aggregator;
mod beacon_chain;
mod checkpoint;
pub use self::beacon_chain::{BeaconChain, Error};
pub use self::checkpoint::CheckPoint;
pub use fork_choice::{ForkChoice, ForkChoiceAlgorithms, ForkChoiceError};