lighthouse/beacon_node/beacon_chain/src/lib.rs

10 lines
281 B
Rust
Raw Normal View History

mod attestation_aggregator;
mod beacon_chain;
mod checkpoint;
pub use self::beacon_chain::{
BeaconChain, BlockProcessingOutcome, Error, InvalidBlock, ValidBlock,
};
pub use self::checkpoint::CheckPoint;
2019-02-19 03:37:17 +00:00
pub use fork_choice::{ForkChoice, ForkChoiceAlgorithm, ForkChoiceError};