Start implementing BeaconChainBuilder

This commit is contained in:
Paul Hauner
2019-08-22 17:48:13 +10:00
parent a8daf46d5f
commit 11dc72a442
3 changed files with 71 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
extern crate lazy_static;
mod beacon_chain;
mod beacon_chain_builder;
mod checkpoint;
mod errors;
mod fork_choice;
@@ -16,6 +17,7 @@ pub use self::beacon_chain::{
};
pub use self::checkpoint::CheckPoint;
pub use self::errors::{BeaconChainError, BlockProductionError};
pub use beacon_chain_builder::BeaconChainBuilder;
pub use lmd_ghost;
pub use metrics::scrape_for_metrics;
pub use parking_lot;