Orchard: remove unused imports

This commit is contained in:
Deirdre Connolly 2021-03-15 03:00:52 -04:00 committed by Deirdre Connolly
parent f3501333b7
commit 218bb9b7c2
4 changed files with 4 additions and 8 deletions

View File

@ -5,8 +5,7 @@ use halo2::pasta::pallas;
use crate::{ use crate::{
primitives::redpallas::{self, SpendAuth}, primitives::redpallas::{self, SpendAuth},
serialization::{ serialization::{
serde_helpers, ReadZcashExt, SerializationError, WriteZcashExt, ZcashDeserialize, serde_helpers, ReadZcashExt, SerializationError, ZcashDeserialize, ZcashSerialize,
ZcashSerialize,
}, },
}; };

View File

@ -9,7 +9,7 @@
mod tests; mod tests;
use std::{ use std::{
convert::{From, Into, TryFrom, TryInto}, convert::{From, Into, TryFrom},
fmt, fmt,
io::{self, Write}, io::{self, Write},
str::FromStr, str::FromStr,

View File

@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::{fmt, io}; use std::{fmt, io};
use crate::serialization::{serde_helpers, SerializationError, ZcashDeserialize, ZcashSerialize}; use crate::serialization::{SerializationError, ZcashDeserialize, ZcashSerialize};
/// An encoding of a Halo2 proof, as used in [Zcash][halo2]. /// An encoding of a Halo2 proof, as used in [Zcash][halo2].
/// ///

View File

@ -1,7 +1,4 @@
use std::{ use std::convert::TryFrom;
convert::{TryFrom, TryInto},
marker::PhantomData,
};
use halo2::arithmetic::FieldExt; use halo2::arithmetic::FieldExt;
use halo2::pasta::pallas; use halo2::pasta::pallas;