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() }); }