diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_reset.nr b/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_reset.nr index 64f4431b82c..c310193af33 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_reset.nr +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_reset.nr @@ -291,7 +291,7 @@ mod tests { let remaining_nullifier_rr_index = builder.previous_kernel.add_read_request_for_pending_nullifier(1); let nullifier_rr = builder.previous_kernel.nullifier_read_requests.storage[remaining_nullifier_rr_index]; - let key_validation_index = builder.previous_kernel.add_request_for_key_validation(EmbeddedCurvePoint::new(1, 2), 27, GENERATOR_INDEX__OVSK_M); + let key_validation_index = builder.previous_kernel.add_request_for_key_validation(EmbeddedCurvePoint::new(1, 2, false), 27, GENERATOR_INDEX__OVSK_M); let key_validation = builder.previous_kernel.scoped_key_validation_requests_and_generators.storage[key_validation_index]; // Check that they have been propagated to the next kernel diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_tail_to_public.nr b/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_tail_to_public.nr index cdb1bac370b..38d8f734543 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_tail_to_public.nr +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/private_kernel_tail_to_public.nr @@ -316,7 +316,7 @@ mod tests { #[test(should_fail_with="Non empty key validation requests")] fn non_empty_key_validations() { let mut builder = PrivateKernelTailToPublicInputsBuilder::new(); - let _void = builder.previous_kernel.add_request_for_key_validation(EmbeddedCurvePoint::new(1, 2), 27, GENERATOR_INDEX__TSK_M); + let _void = builder.previous_kernel.add_request_for_key_validation(EmbeddedCurvePoint::new(1, 2, false), 27, GENERATOR_INDEX__TSK_M); builder.failed(); }