Skip to content

Commit

Permalink
linking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jun 19, 2024
1 parent 90ecfc1 commit 1fd8add
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noir-projects/aztec-nr/aztec/src/context/private_context.nr
Original file line number Diff line number Diff line change
Expand Up @@ -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() });
}
Expand Down

0 comments on commit 1fd8add

Please sign in to comment.