From 1fd8addee6c28f1fb3c5bda8f02c3a591acbe247 Mon Sep 17 00:00:00 2001 From: benesjan Date: Wed, 19 Jun 2024 18:26:29 +0000 Subject: [PATCH] linking issue --- noir-projects/aztec-nr/aztec/src/context/private_context.nr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noir-projects/aztec-nr/aztec/src/context/private_context.nr b/noir-projects/aztec-nr/aztec/src/context/private_context.nr index 674b180b73a..2bdc6b0a51f 100644 --- a/noir-projects/aztec-nr/aztec/src/context/private_context.nr +++ b/noir-projects/aztec-nr/aztec/src/context/private_context.nr @@ -139,8 +139,8 @@ impl PrivateContext { self.new_note_hashes.push(NoteHash { value: note_hash, counter: self.next_counter() }); } - // Note: This function is called with non-zero note hash only in 1 of 25 cases in aztec-packages repo - consider - // creating a separate function with 1 arg for the zero note hash case. + // TODO(#7112): This function is called with non-zero note hash only in 1 of 25 cases in aztec-packages repo + // - consider creating a separate function with 1 arg for the zero note hash case. fn push_new_nullifier(&mut self, nullifier: Field, nullified_note_hash: Field) { self.new_nullifiers.push(Nullifier { value: nullifier, note_hash: nullified_note_hash, counter: self.next_counter() }); }