From 0eea40eaa6034670b22c54bbcfac69b532a87413 Mon Sep 17 00:00:00 2001 From: ledwards2225 Date: Tue, 10 Dec 2024 20:34:40 +0000 Subject: [PATCH] bump hard coded SRS size for wasm --- barretenberg/ts/src/barretenberg/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/ts/src/barretenberg/index.ts b/barretenberg/ts/src/barretenberg/index.ts index 4cd972257b7..4c8097bb89b 100644 --- a/barretenberg/ts/src/barretenberg/index.ts +++ b/barretenberg/ts/src/barretenberg/index.ts @@ -68,7 +68,7 @@ export class Barretenberg extends BarretenbergApi { async initSRSClientIVC(): Promise { // crsPath can be undefined - const crs = await Crs.new(2 ** 19 + 1, this.options.crsPath); + const crs = await Crs.new(2 ** 20 + 1, this.options.crsPath); const grumpkinCrs = await GrumpkinCrs.new(2 ** 14 + 1, this.options.crsPath); // Load CRS into wasm global CRS state.