Skip to content

Commit

Permalink
fix: bump hard coded SRS size for wasm from 2^19 to 2^10 (#10596)
Browse files Browse the repository at this point in the history
  • Loading branch information
ledwards2225 authored and lucasxia01 committed Dec 11, 2024
1 parent 6fce0f8 commit f266e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion barretenberg/ts/src/barretenberg/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class Barretenberg extends BarretenbergApi {

async initSRSClientIVC(): Promise<void> {
// 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.
Expand Down

0 comments on commit f266e82

Please sign in to comment.