-
Notifications
You must be signed in to change notification settings - Fork 599
fix(aztec-node): throw on existing nullifier in getLowNullifierMembershipWitness #21472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
PhilWindle
merged 2 commits into
merge-train/fairies
from
be/fix-low-nullifier-witness-error
Mar 16, 2026
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1133,21 +1133,6 @@ export class AztecNodeService implements AztecNode, AztecNodeAdmin, Traceable { | |
| return new NullifierMembershipWitness(index, leafPreimage as NullifierLeafPreimage, path); | ||
| } | ||
|
|
||
| /** | ||
| * Returns a low nullifier membership witness for a given nullifier at a given block. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dropped the docs from here as they were a duplicate of docs from |
||
| * @param referenceBlock - The block parameter (block number, block hash, or 'latest') at which to get the data | ||
| * (which contains the root of the nullifier tree in which we are searching for the nullifier). | ||
| * @param nullifier - Nullifier we try to find the low nullifier witness for. | ||
| * @returns The low nullifier membership witness (if found). | ||
| * @remarks Low nullifier witness can be used to perform a nullifier non-inclusion proof by leveraging the "linked | ||
| * list structure" of leaves and proving that a lower nullifier is pointing to a bigger next value than the nullifier | ||
| * we are trying to prove non-inclusion for. | ||
| * | ||
| * Note: This function returns the membership witness of the nullifier itself and not the low nullifier when | ||
| * the nullifier already exists in the tree. This is because the `getPreviousValueIndex` function returns the | ||
| * index of the nullifier itself when it already exists in the tree. | ||
| * TODO: This is a confusing behavior and we should eventually address that. | ||
| */ | ||
| public async getLowNullifierMembershipWitness( | ||
| referenceBlock: BlockParameter, | ||
| nullifier: Fr, | ||
|
|
@@ -1159,7 +1144,9 @@ export class AztecNodeService implements AztecNode, AztecNodeAdmin, Traceable { | |
| } | ||
| const { index, alreadyPresent } = findResult; | ||
| if (alreadyPresent) { | ||
| this.log.warn(`Nullifier ${nullifier.toBigInt()} already exists in the tree`); | ||
| throw new Error( | ||
| `Cannot prove nullifier non-inclusion: nullifier ${nullifier.toBigInt()} already exists in the tree`, | ||
| ); | ||
| } | ||
| const preimageData = (await committedDb.getLeafPreimage(MerkleTreeId.NULLIFIER_TREE, index))!; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added 2 tests here. Otherwise this is not unit tested at all. (not the scope of fairies team)