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
Inside jest test suite, await snarkjs.groth16.fullProve( input, wasm, key) is causing the test run to hang. This problem is still persisting.
await snarkjs.groth16.fullProve( input, wasm, key)
kyc_app_be/node_modules/ffjavascript/build/main.cjs:1291 - crypto__default["default"].randomFillSync(array); kyc_app_be/node_modules/ffjavascript/build/main.cjs:1297 - const arr = getRandomBytes(32); kyc_app_be/node_modules/ffjavascript/build/main.cjs:1310 - threadRng = new ChaCha(getRandomSeed()); kyc_app_be/node_modules/ffjavascript/build/main.cjs:3383 - return this.fromRng(getThreadRng()); kyc_app_be/node_modules/snarkjs/build/main.cjs:930 - const r = curve.Fr.random(); kyc_app_be/node_modules/snarkjs/build/main.cjs:1275 - return await groth16Prove(zkeyFileName, wtns, logger);
The text was updated successfully, but these errors were encountered:
Solved it using globalThis.curve_bn128.terminate(); after calling snarkjs.groth16.verify()
globalThis.curve_bn128.terminate();
snarkjs.groth16.verify()
Sorry, something went wrong.
No branches or pull requests
Inside jest test suite,
await snarkjs.groth16.fullProve( input, wasm, key)
is causing the test run to hang. This problem is still persisting.The text was updated successfully, but these errors were encountered: