diff --git a/lighthouse/db/src/stores/pow_chain_store.rs b/lighthouse/db/src/stores/pow_chain_store.rs index f2f0f5df6..fab197288 100644 --- a/lighthouse/db/src/stores/pow_chain_store.rs +++ b/lighthouse/db/src/stores/pow_chain_store.rs @@ -4,7 +4,6 @@ use super::{ DBError, }; use super::POW_CHAIN_DB_COLUMN as DB_COLUMN; -extern crate rand; pub struct PoWChainStore where T: ClientDB @@ -34,6 +33,8 @@ impl PoWChainStore { #[cfg(test)] mod tests { + extern crate rand; + use super::*; use super::super::super::MemoryDB;