Move bootstrapper into own crate

This commit is contained in:
Paul Hauner
2019-09-01 19:32:57 +10:00
parent 14ea6f7710
commit 543e9457b7
10 changed files with 21 additions and 217 deletions

View File

@@ -4,7 +4,6 @@ extern crate lazy_static;
mod beacon_chain;
mod beacon_chain_builder;
mod bootstrapper;
mod checkpoint;
mod errors;
mod fork_choice;
@@ -19,7 +18,6 @@ pub use self::beacon_chain::{
pub use self::checkpoint::CheckPoint;
pub use self::errors::{BeaconChainError, BlockProductionError};
pub use beacon_chain_builder::BeaconChainBuilder;
pub use bootstrapper::Bootstrapper;
pub use lmd_ghost;
pub use metrics::scrape_for_metrics;
pub use parking_lot;