Skip to content

Commit b3cf8dc

Browse files
committed
Merge branch 'jl/unconstrained_nibbles' of https://github.com/noir-lang/noir_bigcurve into jl/unconstrained_nibbles
2 parents c5b2a8a + 11e9c35 commit b3cf8dc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/scalar_field.nr

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pub struct ScalarField<let N: u32> {
2626
// 1, 2, 3, 4
2727
unconstrained fn get_wnaf_slices<let N: u32>(x: Field) -> ScalarField<N> {
2828
let mut base4_slices: [u8; N] = [0; N];
29-
// let mut nibbles = x.to_le_radix::<N>(16);
3029
let bytes = x.to_le_bytes::<32>();
3130
let mut nibbles: [u8; N] = [0; N];
3231
nibbles = extract_nibbles_from_bytes(bytes);

0 commit comments

Comments
 (0)