Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeilaWang committed Sep 26, 2023
1 parent 4a7a1ca commit 7608638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/aztec-node/src/aztec-node/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export class AztecNodeService implements AztecNode {
* @returns The index of the given leaf in the nullifier tree or undefined if not found.
*/
public async findNullifierIndex(nullifier: Fr): Promise<bigint | undefined> {
const committedDb = await this.getWorldState();
const committedDb = await this.#getWorldState();
return committedDb.findLeafIndex(MerkleTreeId.NULLIFIER_TREE, nullifier.toBuffer());
}

Expand Down

0 comments on commit 7608638

Please sign in to comment.