Skip to content

Commit 84c12cd

Browse files
committed
fix
1 parent 8fe9a36 commit 84c12cd

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
- name: Install bb
2626
run: |
2727
curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/next/barretenberg/bbup/install | bash
28-
~/.bb/bbup -nv 1.0.0-beta.12
28+
~/.bb/bbup -nv 1.0.0-beta.16
2929
sudo apt install libc++-dev
3030
3131
- name: Build Noir benchmark programs
3232
run: nargo export
3333

3434
- name: Generate gates report
35-
run: ./scripts/build-gates-report.sh
35+
run: ./ethereum/scripts/build-gates-report.sh
3636
env:
3737
BACKEND: /home/runner/.bb/bb
3838

@@ -76,7 +76,7 @@ jobs:
7676
run: nargo export --force-brillig
7777

7878
- name: Generate brillig report
79-
run: ./scripts/build-brillig-report.sh
79+
run: ./ethereum/scripts/build-brillig-report.sh
8080

8181
- name: Store brillig benchmark result
8282
uses: benchmark-action/github-action-benchmark@v1

ethereum/circuits/lib/src/account.nr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ type AccountWithStateProofM = (Account, ProofInput<MAX_PREFIXED_KEY_NIBBLE_LEN,
2727

2828
type ProofInputSerialized<let LEN: u32> = [Field; LEN];
2929

30+
#[export]
3031
pub fn get_account(chain_id: u32, block_no: u64, address: Address) -> AccountWithinBlock {
3132
// Safety: verification done separately
3233
let (account, state_proof) =

ethereum/scripts/build-brillig-report.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
INSPECTOR=${INSPECTOR:-noir-inspector}
55
cd $(dirname "$0")/../
66

7-
artifacts_path="./export"
7+
artifacts_path="./../export"
88
artifacts=$(ls $artifacts_path)
99

1010
# Start the JSON array

ethereum/scripts/build-gates-report.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ BACKEND=${BACKEND:-bb}
55

66
cd $(dirname "$0")/../
77

8-
artifacts_path="./export"
8+
artifacts_path="./../export"
99
artifacts=$(ls $artifacts_path)
1010

1111
echo "{\"programs\": [" > gates_report.json

0 commit comments

Comments
 (0)