Better info for signal not assigned

This commit is contained in:
Jordi Baylina 2020-08-31 11:33:56 +02:00
parent 37a7800ee5
commit 957ecc0006
No known key found for this signature in database
GPG Key ID: 7480C80C1BE43112
7 changed files with 12 additions and 10 deletions

@ -6352,7 +6352,7 @@ async function wtnsDebug(input, wasmFileName, wtnsFileName, symName, options, lo
if (logger) logger.info("FINISH: " + sym.componentIdx2Name[cIdx]);
};
}
wcOps.sym = sym;
const wc = await WitnessCalculatorBuilder$1(wasm, wcOps);
const w = await wc.calculateWitness(input);

@ -4445,7 +4445,7 @@ async function wtnsDebug(input, wasmFileName, wtnsFileName, symName, options, lo
if (logger) logger.info("FINISH: " + sym.componentIdx2Name[cIdx]);
};
}
wcOps.sym = sym;
const wc = await WitnessCalculatorBuilder$1(wasm, wcOps);
const w = await wc.calculateWitness(input);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

6
package-lock.json generated

@ -282,9 +282,9 @@
}
},
"circom_runtime": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/circom_runtime/-/circom_runtime-0.1.4.tgz",
"integrity": "sha512-sQWeEBD3o2jIdrKPf3VDu7DNfP+NfscYO/pxi73FE0qQW8TXTfwno8Grdl++h6OKWbzvWJdG5jQvS+WGKjpMOg==",
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/circom_runtime/-/circom_runtime-0.1.5.tgz",
"integrity": "sha512-BT3d9VCrH/rBRbThDXG731JwezKyskxyE46nACO6Tt/jaorn27LDxFDORdAAjyD0RAoBt+6FpaTp3qlYSx7Pjg==",
"requires": {
"ffjavascript": "0.2.10",
"fnv-plus": "^1.3.1"

@ -39,7 +39,7 @@
},
"dependencies": {
"blake2b-wasm": "https://github.com/jbaylina/blake2b-wasm.git",
"circom_runtime": "0.1.4",
"circom_runtime": "0.1.5",
"fastfile": "0.0.14",
"ffjavascript": "0.2.13",
"logplease": "^1.2.15",

@ -38,7 +38,7 @@ export default async function wtnsDebug(input, wasmFileName, wtnsFileName, symNa
if (logger) logger.info("FINISH: " + sym.componentIdx2Name[cIdx]);
};
}
wcOps.sym = sym;
const wc = await WitnessCalculatorBuilder(wasm, wcOps);
const w = await wc.calculateWitness(input);