Remove unused types::common mod

This commit is contained in:
Paul Hauner 2018-12-29 14:33:48 +11:00
parent 4757b35ed2
commit 9efc7a0def
No known key found for this signature in database
GPG Key ID: 303E4494BB28068C
2 changed files with 0 additions and 16 deletions

View File

@ -1,7 +0,0 @@
use std::collections::HashMap;
/// Maps a (slot, shard_id) to attestation_indices.
pub type AttesterMap = HashMap<(u64, u16), Vec<usize>>;
/// Maps a slot to a block proposer.
pub type ProposerMap = HashMap<u64, usize>;

View File

@ -1,9 +0,0 @@
mod delegation;
mod shuffling;
pub mod maps;
pub mod attestation_parent_hashes;
use super::utils;
use super::utils::types::Hash256;
pub use self::shuffling::shuffle;