Skip to content

Commit

Permalink
make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfarrow committed Jul 29, 2022
1 parent 48a0e28 commit 6151810
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions schnorr_fun/src/blind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,18 @@
//! }
//! ```

use crate::fun::rand_core::{CryptoRng, RngCore};
use crate::{Message, Schnorr, Signature};
use crate::{
fun::rand_core::{CryptoRng, RngCore},
Message, Schnorr, Signature, Vec,
};
use rand::Rng;
use secp256kfun::nonce::{AddTag, NonceGen};
use secp256kfun::{
digest::{generic_array::typenum::U32, Digest},
g,
marker::*,
nonce::{AddTag, NonceGen},
s, Point, Scalar, G,
};
use std::vec::Vec;

/// Use [`BlindingTweaks`] to create the blinded public key, challenge, and nonce needed for a blinded signature
///
Expand Down
1 change: 1 addition & 0 deletions schnorr_fun/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ pub mod musig;

#[cfg(feature = "alloc")]
pub mod blind;
#[cfg(feature = "alloc")]
pub use blind::*;

mod signature;
Expand Down

0 comments on commit 6151810

Please sign in to comment.