Skip to content

Commit

Permalink
Revert unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Jul 31, 2022
1 parent 40d9115 commit c0f20b3
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions zcash_proofs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,11 @@
// Temporary until we have addressed all Result<T, ()> cases.
#![allow(clippy::result_unit_err)]

use std::{
fs::File,
io::{self, BufReader},
path::Path,
};

use bellman::groth16::{prepare_verifying_key, Parameters, PreparedVerifyingKey, VerifyingKey};
use bls12_381::Bls12;
use std::fs::File;
use std::io::{self, BufReader};
use std::path::Path;

#[cfg(feature = "directories")]
use directories::BaseDirs;
Expand All @@ -25,7 +22,7 @@ use std::path::PathBuf;

pub mod circuit;
pub mod constants;
pub mod hashreader;
mod hashreader;
pub mod sapling;
pub mod sprout;

Expand Down

0 comments on commit c0f20b3

Please sign in to comment.