Skip to content

Commit

Permalink
Fix clippies
Browse files Browse the repository at this point in the history
  • Loading branch information
Remco Bloemen committed Oct 6, 2020
1 parent c3a20a2 commit 46b5448
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crypto/elliptic-curve-crypto/src/private_key.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// False positive from derive macros
#![allow(unused_qualifications)]

use crate::{Signature, GENERATOR_TABLE};
#[cfg(feature = "parity_codec")]
use parity_scale_codec::{Decode, Encode};
Expand Down
3 changes: 3 additions & 0 deletions crypto/elliptic-curve-crypto/src/public_key.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// False positive from derive macros
#![allow(unused_qualifications)]

use crate::{PrivateKey, Signature, GENERATOR_TABLE};
#[cfg(feature = "parity_codec")]
use parity_scale_codec::{Decode, Encode};
Expand Down

0 comments on commit 46b5448

Please sign in to comment.