Remove unused imports (#8722)

This commit is contained in:
Nicolas Gotchac 2018-05-28 16:32:29 +02:00 committed by Niklas Adolfsson
parent 7d7d4822a5
commit ed8425b8b9
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ use std::sync::Arc;
use std::time::Duration;
use ipnetwork::{IpNetwork, IpNetworkError};
use ethkey::Secret;
use ethereum_types::{H256, H512};
use ethereum_types::H512;
use rlp::{Decodable, DecoderError, Rlp};
/// Protocol handler level packet id

View File

@ -21,7 +21,7 @@ use super::node::{Node, OwnedNode};
use super::lookup::Lookup;
use super::{Trie, TrieItem, TrieError, TrieIterator, Query};
use ethereum_types::H256;
use bytes::{ToPretty, Bytes};
use bytes::Bytes;
/// A `Trie` implementation using a generic `HashDB` backing database.
///