2019-02-14 01:09:18 +00:00
|
|
|
mod attestation_aggregator;
|
|
|
|
mod beacon_chain;
|
|
|
|
mod checkpoint;
|
2019-03-07 01:53:15 +00:00
|
|
|
mod errors;
|
2019-03-18 05:16:54 +00:00
|
|
|
pub mod initialise;
|
2019-02-14 01:09:18 +00:00
|
|
|
|
2019-03-07 01:53:15 +00:00
|
|
|
pub use self::beacon_chain::{BeaconChain, BlockProcessingOutcome, InvalidBlock, ValidBlock};
|
2019-02-14 01:09:18 +00:00
|
|
|
pub use self::checkpoint::CheckPoint;
|
2019-03-07 01:53:15 +00:00
|
|
|
pub use self::errors::BeaconChainError;
|
2019-02-19 03:37:17 +00:00
|
|
|
pub use fork_choice::{ForkChoice, ForkChoiceAlgorithm, ForkChoiceError};
|