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::{
primitives::redpallas::{self, SpendAuth},
serialization::{
serde_helpers, ReadZcashExt, SerializationError, WriteZcashExt, ZcashDeserialize,
ZcashSerialize,
serde_helpers, ReadZcashExt, SerializationError, ZcashDeserialize, ZcashSerialize,
},
};

View File

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

View File

@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize};
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].
///

View File

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