Skip to content

Commit

Permalink
Merge 43a02bd into d4e03d0
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Jun 24, 2024
2 parents d4e03d0 + 43a02bd commit 4c1ea25
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion scripts/install_bb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="0.41.0"
VERSION="0.43.0"

BBUP_PATH=~/.bb/bbup

Expand Down
2 changes: 1 addition & 1 deletion tooling/noir_js_backend_barretenberg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0"
},
"dependencies": {
"@aztec/bb.js": "0.41.0",
"@aztec/bb.js": "0.43.0",
"@noir-lang/types": "workspace:*",
"fflate": "^0.8.0"
},
Expand Down
3 changes: 2 additions & 1 deletion tooling/noir_js_backend_barretenberg/src/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export class BarretenbergVerifierBackend implements VerifierBackend {
const { Barretenberg, RawBuffer, Crs } = await import('@aztec/bb.js');
const api = await Barretenberg.new(this.options);

const [_exact, _total, subgroupSize] = await api.acirGetCircuitSizes(this.acirUncompressedBytecode);
const honkRecursion = false;
const [_exact, _total, subgroupSize] = await api.acirGetCircuitSizes(this.acirUncompressedBytecode, honkRecursion);
const crs = await Crs.new(subgroupSize + 1);
await api.commonInitSlabAllocator(subgroupSize);
await api.srsInitSrs(new RawBuffer(crs.getG1Data()), crs.numPoints, new RawBuffer(crs.getG2Data()));
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -221,17 +221,17 @@ __metadata:
languageName: node
linkType: hard

"@aztec/bb.js@npm:0.41.0":
version: 0.41.0
resolution: "@aztec/bb.js@npm:0.41.0"
"@aztec/bb.js@npm:0.43.0":
version: 0.43.0
resolution: "@aztec/bb.js@npm:0.43.0"
dependencies:
comlink: ^4.4.1
commander: ^10.0.1
debug: ^4.3.4
tslib: ^2.4.0
bin:
bb.js: dest/node/main.js
checksum: e5e0095eaff3de45726366726337b131bb6ff7cf2cb53be705572c7d6715dae4c948bf86a03cfad68bc98c0c2d83e64cbe3723cc72260c8dbfa262af8cb81f9b
checksum: 63d2617529e00a05e1ac9364639dc10761e50cb6a16e010ac6354011440de037112a82d7cdd29a65b139af528c7d865b047e157b25d15ac36ff701863d550a5b
languageName: node
linkType: hard

Expand Down Expand Up @@ -4396,7 +4396,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@noir-lang/backend_barretenberg@workspace:tooling/noir_js_backend_barretenberg"
dependencies:
"@aztec/bb.js": 0.41.0
"@aztec/bb.js": 0.43.0
"@noir-lang/types": "workspace:*"
"@types/node": ^20.6.2
"@types/prettier": ^3
Expand Down

0 comments on commit 4c1ea25

Please sign in to comment.