mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-07 03:06:42 +01:00
deps and compatible with node10
This commit is contained in:
@@ -103,7 +103,11 @@ async function buildR1cs(ctx, fileName) {
|
||||
|
||||
async function writeU64(v, pos) {
|
||||
const b = Buffer.allocUnsafe(8);
|
||||
b.writeBigUInt64LE(BigInt(v));
|
||||
|
||||
const LSB = v & 0xFFFFFFFF;
|
||||
const MSB = Math.floor(v / 0x100000000);
|
||||
b.writeInt32LE(LSB, 0);
|
||||
b.writeInt32LE(MSB, 4);
|
||||
|
||||
await fd.write(b, 0, 8, pos);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user