This commit is contained in:
Jordi Baylina 2020-09-10 15:02:19 +02:00
parent 4bfc3e1fe6
commit c2d5e439d1
No known key found for this signature in database
GPG Key ID: 7480C80C1BE43112
7 changed files with 13 additions and 13 deletions

@ -2286,7 +2286,7 @@ async function readBinFile$1(fileName, type, maxVersion) {
async function createBinFile(fileName, type, version, nSections) {
const fd = await createOverride(fileName, null, 1<<24);
const fd = await createOverride(fileName, null, 1<<7);
const buff = new Uint8Array(4);
for (let i=0; i<4; i++) buff[i] = type.charCodeAt(i);

@ -756,7 +756,7 @@ async function readBinFile(fileName, type, maxVersion) {
async function createBinFile(fileName, type, version, nSections) {
const fd = await createOverride(fileName, null, 1<<24);
const fd = await createOverride(fileName, null, 1<<7);
const buff = new Uint8Array(4);
for (let i=0; i<4; i++) buff[i] = type.charCodeAt(i);

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

@ -672,9 +672,9 @@
"integrity": "sha512-LwvI75nCVs83EsuKpT+cL7M7T3VNdY4O50nLi4jnVZcxvqbWWqX43dM2GDrNHeD5uaX+ug0Di5RcvnTTI+hEAQ=="
},
"ffjavascript": {
"version": "0.2.18",
"resolved": "https://registry.npmjs.org/ffjavascript/-/ffjavascript-0.2.18.tgz",
"integrity": "sha512-FFQHf5QiP+MfeCk6k6T4rYMS+53gkuhJoBpsH89c8fsNJi4EqhRiYxJa5F9aTktBZzGKj9e51Nb0ABsQcLdLaw==",
"version": "0.2.19",
"resolved": "https://registry.npmjs.org/ffjavascript/-/ffjavascript-0.2.19.tgz",
"integrity": "sha512-gt49G6XJTN3CXw4H8aSUdaR827xfbyxvUgf5RtQ4Zd0Ush79QGRYAuSf1MRpxbpU/CMrIwZWGxiXJWu8BHaiRg==",
"requires": {
"big-integer": "^1.6.48",
"wasmcurves": "0.0.10",

@ -41,7 +41,7 @@
"blake2b-wasm": "https://github.com/jbaylina/blake2b-wasm.git",
"circom_runtime": "0.1.5",
"fastfile": "0.0.15",
"ffjavascript": "0.2.18",
"ffjavascript": "0.2.19",
"logplease": "^1.2.15",
"r1csfile": "0.0.12"
},

@ -36,7 +36,7 @@ export async function readBinFile(fileName, type, maxVersion) {
export async function createBinFile(fileName, type, version, nSections) {
const fd = await fastFile.createOverride(fileName, null, 1<<24);
const fd = await fastFile.createOverride(fileName, null, 1<<7);
const buff = new Uint8Array(4);
for (let i=0; i<4; i++) buff[i] = type.charCodeAt(i);