Remove some dangling deps causing warnings

This commit is contained in:
Paul Hauner 2018-09-20 15:17:34 +10:00
parent 809edba150
commit 43394c074c
No known key found for this signature in database
GPG Key ID: 303E4494BB28068C
3 changed files with 0 additions and 11 deletions

View File

@ -5,7 +5,6 @@ extern crate bytes;
extern crate ssz;
use super::utils;
use super::db;
pub mod active_state;
pub mod attestation_record;

View File

@ -1,13 +1,7 @@
use super::super::utils::types::Hash256;
use super::crystallized_state;
use super::super::db;
use super::ssz;
use super::blake2;
use super::utils;
mod attestation_parent_hashes;
mod shuffling;
mod validate_block;
pub use self::attestation_parent_hashes::attestation_parent_hashes;
pub use self::shuffling::shuffle;

View File

@ -1,4 +0,0 @@
enum BlockStatus {
NewBlock,
KnownBlock,
}