We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 264c33e commit 11e9c35Copy full SHA for 11e9c35
src/scalar_field.nr
@@ -26,7 +26,6 @@ pub struct ScalarField<let N: u32> {
26
// 1, 2, 3, 4
27
unconstrained fn get_wnaf_slices<let N: u32>(x: Field) -> ScalarField<N> {
28
let mut base4_slices: [u8; N] = [0; N];
29
- // let mut nibbles = x.to_le_radix::<N>(16);
30
let bytes = x.to_le_bytes::<32>();
31
let mut nibbles: [u8; N] = [0; N];
32
nibbles = extract_nibbles_from_bytes(bytes);
0 commit comments