Skip to content

Commit a37f82d

Browse files
authored
fix: bump hard coded SRS size for wasm from 2^19 to 2^10 (#10596)
1 parent 9b26651 commit a37f82d

File tree

1 file changed

+1
-1
lines changed
  • barretenberg/ts/src/barretenberg

1 file changed

+1
-1
lines changed

barretenberg/ts/src/barretenberg/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class Barretenberg extends BarretenbergApi {
6868

6969
async initSRSClientIVC(): Promise<void> {
7070
// crsPath can be undefined
71-
const crs = await Crs.new(2 ** 19 + 1, this.options.crsPath);
71+
const crs = await Crs.new(2 ** 20 + 1, this.options.crsPath);
7272
const grumpkinCrs = await GrumpkinCrs.new(2 ** 14 + 1, this.options.crsPath);
7373

7474
// Load CRS into wasm global CRS state.

0 commit comments

Comments
 (0)