Update beacon_chain as per test bugs

This commit is contained in:
Paul Hauner
2019-01-25 11:30:06 +11:00
parent 643fc20063
commit f4f5b3a13c
9 changed files with 188 additions and 86 deletions

View File

@@ -1,8 +1,9 @@
mod attestation_targets;
mod block_graph;
mod block_processing;
pub mod block_processing;
pub mod block_production;
mod canonical_head;
mod finalized_head;
mod info;
mod lmd_ghost;
mod state_transition;
@@ -17,9 +18,8 @@ use genesis::{genesis_beacon_block, genesis_beacon_state, GenesisError};
use slot_clock::SlotClock;
use spec::ChainSpec;
use ssz::ssz_encode;
use std::collections::{HashMap, HashSet};
use std::sync::{Arc, RwLock};
use types::{BeaconBlock, BeaconState, Hash256, PublicKey};
use types::{BeaconBlock, BeaconState, Hash256};
pub use self::block_processing::Outcome as BlockProcessingOutcome;