Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/encoding.nr
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ pub(crate) fn encode_message_extension(w: Field) -> EncodedWitness {
// and we also need to validate the bit range of each slice
// (we get an implicit range constraint for free by indexing our BASE4_ENCODE_TABLE lookup tables)
let s: [u32; 12] = unsafe { __decompose_witness(w) };
let s: [u32; 12] = unsafe { __decompose_witness(w) };

// Validate the sum of the slices equals the original input `w`
// Note: we range constrain the slices later on in the function
Expand Down
Loading