lighthouse/beacon_node/beacon_chain/src/lib.rs
2019-02-19 14:37:17 +11:00

9 lines
249 B
Rust

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