Skip to content

Commit

Permalink
Update halo2_proofs/src/plonk/circuit.rs
Browse files Browse the repository at this point in the history
Address @han0110's suggestions

Co-authored-by: Han <tinghan0110@gmail.com>
  • Loading branch information
CPerezz and han0110 authored Nov 10, 2023
1 parent f07d35f commit ec12916
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions halo2_proofs/src/plonk/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1622,8 +1622,11 @@ impl<'a, F: Field> std::fmt::Debug for PinnedConstraintSystem<'a, F> {
.field("instance_queries", self.instance_queries)
.field("fixed_queries", self.fixed_queries)
.field("permutation", self.permutation)
.field("lookups", self.lookups)
.field("shuffles", self.shuffles)
.field("lookups", self.lookups);
if !self.shuffles.is_empty() {
debug_struct.field("shuffles", self.shuffles);
}
debug_struct
.field("constants", self.constants)
.field("minimum_degree", self.minimum_degree);
debug_struct.finish()
Expand Down

0 comments on commit ec12916

Please sign in to comment.