From 985696796be78311f503065b8e51c1473262f218 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Mon, 4 Sep 2023 22:16:41 +0000 Subject: [PATCH] This does not account for the generator that is at the beginning of the transcript. This works only for transcript url `sealed/` and not `monomial/` --- yarn-project/circuits.js/src/crs/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/circuits.js/src/crs/index.ts b/yarn-project/circuits.js/src/crs/index.ts index 05a698d15e3..2f1af8aa764 100644 --- a/yarn-project/circuits.js/src/crs/index.ts +++ b/yarn-project/circuits.js/src/crs/index.ts @@ -95,7 +95,7 @@ export class FileCrs { const g1Start = 28; const g1Length = this.numPoints * 64; - const g2Start = 28 + 5040000 * 64; + const g2Start = 28 + 5040001 * 64; const g2Length = 128; // Lazily seek our data const fileHandle = await open(this.path, 'r');