Skip to content

Commit

Permalink
remove unused trait bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Sep 10, 2021
1 parent 825533e commit e694f49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion storage-proofs-porep/src/drg/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ fn kdf<E, CS>(
node: Option<UInt64>,
) -> Result<AllocatedNum<E>, SynthesisError>
where
E: Engine + Send,
E: Engine,
CS: ConstraintSystem<E>,
{
// ciphertexts will become a buffer of the layout
Expand Down
2 changes: 1 addition & 1 deletion storage-proofs-porep/src/stacked/circuit/create_label.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn create_label_circuit<E, CS>(
node: UInt64,
) -> Result<AllocatedNum<E>, SynthesisError>
where
E: Engine + Send,
E: Engine,
CS: ConstraintSystem<E>,
{
assert!(replica_id.len() >= 32, "replica id is too small");
Expand Down

0 comments on commit e694f49

Please sign in to comment.