From a688370c9d6f02835592310b1e863f835cdcd0eb Mon Sep 17 00:00:00 2001 From: Fredrik Date: Tue, 5 Sep 2017 10:18:07 +0200 Subject: [PATCH] Remove now unnecessary util glob imports --- ethcore/src/miner/work_notify.rs | 1 - ethcore/src/verification/queue/mod.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/ethcore/src/miner/work_notify.rs b/ethcore/src/miner/work_notify.rs index 701df738d..76bc0a371 100644 --- a/ethcore/src/miner/work_notify.rs +++ b/ethcore/src/miner/work_notify.rs @@ -27,7 +27,6 @@ use hyper::Url; use bigint::prelude::U256; use bigint::hash::H256; use parking_lot::Mutex; -use util::*; use ethereum::ethash::Ethash; /// Trait for notifying about new mining work diff --git a/ethcore/src/verification/queue/mod.rs b/ethcore/src/verification/queue/mod.rs index 244ad4f5c..6e2e2f128 100644 --- a/ethcore/src/verification/queue/mod.rs +++ b/ethcore/src/verification/queue/mod.rs @@ -26,7 +26,6 @@ use heapsize::HeapSizeOf; use bigint::prelude::U256; use bigint::hash::H256; use parking_lot::{Condvar, Mutex, RwLock}; -use util::*; use io::*; use error::*; use engines::Engine;