-
Notifications
You must be signed in to change notification settings - Fork 271
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
chore: fixing test contract fixture #9909
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
ec72ad7
to
c4544b9
Compare
c4544b9
to
4aea1b9
Compare
Changes to circuit sizes
🧾 Summary (100% most significant diffs)
Full diff report 👇
|
4aea1b9
to
7482995
Compare
7482995
to
4bf0326
Compare
@@ -40,6 +40,8 @@ describe('unconstrained_function_membership_proof', () => { | |||
expect(artifact.functions.filter(isUnconstrained).length).toBe(1); | |||
|
|||
const unconstrainedFunction = unconstrainedFns[0]; | |||
const selector = FunctionSelector.fromNameAndParameters(unconstrainedFunction); |
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.
This needed to be fixed because previously it was using the selector set on L24
which is not the same selector as the unconstrained function set here !
This just fixes a utility function that seems to be a typo, as it is has the same content as the function above it, and uses the same artifact. This also bumps the timeout of `pxe.test.ts` because we were seeing some issues in timeouts with adding contract artifact.
* master: (245 commits) chore: pull signed bitshifts from sync PR (#9939) chore: pull frontend changes from sync PR (#9935) feat: separate bytecode logs from unencrypted logs (#9891) git subrepo push --branch=master noir-projects/aztec-nr git_subrepo.sh: Fix parent in .gitrepo file. [skip ci] chore: replace relative paths to noir-protocol-circuits git subrepo push --branch=master barretenberg fix: token naming issue (#9950) feat: multiplier oracle (#9902) refactor: token refunds cleanup (#9943) chore: Use stack based recursion instead of function recursion (#9947) feat: parallelize DIE pass (#9933) feat(avm): Simulator enforces integral tag for DIV and field tag for FDIV (#9944) chore(avm): bugfixing witness generation for add, sub, mul for FF (#9938) feat: Google Cloud Kubernetes cluster + AWS Firewall Rules (#9915) chore: nuking ancient redundant test (#9941) fix: include 'master' version for aztec-up scripts (#9940) chore: fixing test contract fixture (#9909) refactor: token naming cleanup (#9904) chore: pull SSA parser from sync PR (#9928) ...
This just fixes a utility function that seems to be a typo, as it is has the same content as the function above it, and uses the same artifact. This also bumps the timeout of
pxe.test.ts
because we were seeing some issues in timeouts with adding contract artifact.