Fix name in ID

This commit is contained in:
Robin Salen 2023-07-27 11:26:43 -04:00
parent bfa7ab369e
commit bc24678026
No known key found for this signature in database
GPG Key ID: FB87BACFB3CB2007

View File

@ -81,7 +81,7 @@ impl<F: RichField + Extendable<D>, const D: usize> Gate<F, D> 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
)
}