Skip to content

Commit

Permalink
fix: Allow to compare Assembly structs (privacy-scaling-exploration…
Browse files Browse the repository at this point in the history
…s#126)

This was missing in privacy-scaling-explorations#123 so this PR fixes it.
  • Loading branch information
CPerezz authored Jan 17, 2023
1 parent 5c3ea1a commit 4b34aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_proofs/src/plonk/permutation/keygen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::{
};

/// Struct that accumulates all the necessary data in order to construct the permutation argument.
#[derive(Debug)]
#[derive(Debug, PartialEq, Eq)]
pub struct Assembly {
/// Columns that participate on the copy permutation argument.
pub columns: Vec<Column<Any>>,
Expand Down

0 comments on commit 4b34aa2

Please sign in to comment.