Skip to content

Commit

Permalink
fix lookup format
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc committed Mar 30, 2024
1 parent 59543f2 commit 5f2d556
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions halo2_proofs/src/plonk/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1590,8 +1590,8 @@ pub struct LookupTracker<F: Field> {
pub(crate) inputs: Vec<Vec<Expression<F>>>,
}

impl<F: Field> fmt::Debug for LookupTracker<F> where F: fmt::Debug {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
impl<F: Field> std::fmt::Debug for LookupTracker<F> where F: std::fmt::Debug {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("LookupTracker")
.field("table", &self.table)
.field("inputs", &self.inputs)
Expand Down

0 comments on commit 5f2d556

Please sign in to comment.