Skip to content

Commit

Permalink
fmt fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xoloki committed Aug 12, 2019
1 parent c1890b1 commit 415e355
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/inner_product_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

extern crate alloc;

use alloc::vec::Vec;
use alloc::borrow::Borrow;
use alloc::vec::Vec;

use core::iter;
use curve25519_dalek::ristretto::{CompressedRistretto, RistrettoPoint};
Expand Down
2 changes: 1 addition & 1 deletion src/range_proof/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ extern crate alloc;
#[cfg(feature = "std")]
extern crate rand;

use alloc::vec::Vec;
#[cfg(feature = "std")]
use self::rand::thread_rng;
use alloc::vec::Vec;

use core::iter;

Expand Down
2 changes: 1 addition & 1 deletion src/range_proof/party.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
extern crate alloc;

use alloc::vec::Vec;
use clear_on_drop::clear::Clear;
use core::iter;
use curve25519_dalek::ristretto::{CompressedRistretto, RistrettoPoint};
use curve25519_dalek::scalar::Scalar;
use curve25519_dalek::traits::MultiscalarMul;
use clear_on_drop::clear::Clear;
use errors::MPCError;
use generators::{BulletproofGens, PedersenGens};
use rand_core::{CryptoRng, RngCore};
Expand Down

0 comments on commit 415e355

Please sign in to comment.