@smithii_io/mixoor 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/index.mjs
CHANGED
|
@@ -1175,7 +1175,9 @@ async function generateProof(input) {
|
|
|
1175
1175
|
const { proof, publicSignals } = await groth16.fullProve(
|
|
1176
1176
|
circuitInputs,
|
|
1177
1177
|
wasmPath,
|
|
1178
|
-
zkeyPath
|
|
1178
|
+
zkeyPath,
|
|
1179
|
+
true
|
|
1180
|
+
// ! use single thread for proving
|
|
1179
1181
|
);
|
|
1180
1182
|
const vKeyPath = path.join(packageRoot, "circuits/verification_key.json");
|
|
1181
1183
|
const isValid = await groth16.verify(
|