From d279794c3202c73507bcec6f6149df966676907a Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Thu, 18 Aug 2016 17:01:24 +0400 Subject: [PATCH] remove unused imports (#1951) --- ethcore/src/client/traits.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethcore/src/client/traits.rs b/ethcore/src/client/traits.rs index 40ab23b8e..271e95785 100644 --- a/ethcore/src/client/traits.rs +++ b/ethcore/src/client/traits.rs @@ -14,8 +14,7 @@ // You should have received a copy of the GNU General Public License // along with Parity. If not, see . -use std::mem; -use std::collections::{BTreeMap, VecDeque}; +use std::collections::BTreeMap; use util::{U256, Address, H256, H2048, Bytes, Itertools}; use blockchain::TreeRoute; use block_queue::BlockQueueInfo;