From c0f20b347fcef812f4edf61194cb57dbd74bd910 Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 1 Aug 2022 07:53:49 +1000 Subject: [PATCH] Revert unnecessary changes --- zcash_proofs/src/lib.rs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/zcash_proofs/src/lib.rs b/zcash_proofs/src/lib.rs index 1eb68af25b..2642576d22 100644 --- a/zcash_proofs/src/lib.rs +++ b/zcash_proofs/src/lib.rs @@ -9,14 +9,11 @@ // Temporary until we have addressed all Result 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; @@ -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;