deps
This commit is contained in:
parent
4bfc3e1fe6
commit
c2d5e439d1
@ -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
2
build/snarkjs.min.js
vendored
2
build/snarkjs.min.js
vendored
File diff suppressed because one or more lines are too long
6
package-lock.json
generated
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);
|
||||
|
Loading…
Reference in New Issue
Block a user