Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into dp/chore/remove-rust-crypto-from-devp2p
Browse files Browse the repository at this point in the history
* master:
  [devp2p] Fix warnings and re-org imports (#10710)
  • Loading branch information
dvdplm committed Jun 4, 2019
2 parents 6f51390 + 425dcd4 commit b0c89b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion util/network-devp2p/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use crypto::aes::{AesCtr256, AesEcb256};
use rlp::{Rlp, RlpStream};
use tiny_keccak::Keccak;

use ethkey::{crypto, Secret};
use ethkey::crypto;
use handshake::Handshake;
use io::{IoContext, StreamToken};
use network::{Error, ErrorKind};
Expand Down
2 changes: 1 addition & 1 deletion util/network-devp2p/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
//TODO: use Poll from mio
#![allow(deprecated)]

//TODO: remove this
extern crate ansi_term;
#[cfg(test)] #[macro_use]
extern crate assert_matches;
Expand Down Expand Up @@ -87,7 +88,6 @@ extern crate parity_snappy as snappy;
extern crate parking_lot;
extern crate rand;
extern crate rlp;
//TODO: remove this
extern crate rustc_hex;
extern crate serde;
#[macro_use]
Expand Down

0 comments on commit b0c89b8

Please sign in to comment.