Skip to content

Commit

Permalink
bump hard coded SRS size for wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
ledwards2225 committed Dec 10, 2024
1 parent 9b26651 commit 0eea40e
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 0eea40e

Please sign in to comment.