We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to create a backend_barretenberg instance that only verifies, doesn't prove. Example code:
backend_barretenberg
const backends = { alice: new BarretenbergBackend(main, {threads: 8}), bob: new BarretenbergBackend(main, {threads: 8}) } const noirs = { alice: new Noir(main, backends.alice), bob: new Noir(main, backends.bob) } async function program() { const input = {x : 1, y: 2} const proof = await noirs.alice.generateFinalProof(input) await noirs.alice.verifyFinalProof(proof) }
I expect the proof to verify
It doesn't verify, and the reason is because the proving key is not initialized on Bob's backend instance.
None
No response
Yes
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Aim
I want to create a
backend_barretenberg
instance that only verifies, doesn't prove. Example code:Expected Behavior
I expect the proof to verify
Bug
It doesn't verify, and the reason is because the proving key is not initialized on Bob's backend instance.
To Reproduce
Installation Method
None
Nargo Version
No response
Additional Context
No response
Would you like to submit a PR for this Issue?
Yes
Support Needs
No response
The text was updated successfully, but these errors were encountered: