From bc24678026246e87a45f34c37f30c1f6be958866 Mon Sep 17 00:00:00 2001 From: Robin Salen Date: Thu, 27 Jul 2023 11:26:43 -0400 Subject: [PATCH] Fix name in ID --- plonky2/src/gates/lookup_table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/src/gates/lookup_table.rs b/plonky2/src/gates/lookup_table.rs index f3ed842d..9f9d967e 100644 --- a/plonky2/src/gates/lookup_table.rs +++ b/plonky2/src/gates/lookup_table.rs @@ -81,7 +81,7 @@ impl, const D: usize> Gate for LookupTableGat fn id(&self) -> String { // Custom implementation to not have the entire lookup table format!( - "LookupGate {{num_slots: {}, lut_hash: {:?}, last_lut_row: {}}}", + "LookupTableGate {{num_slots: {}, lut_hash: {:?}, last_lut_row: {}}}", self.num_slots, self.lut_hash, self.last_lut_row ) }