Skip to content

Commit 97ce976

Browse files
committed
fix
1 parent 8fe9a36 commit 97ce976

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
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) =

0 commit comments

Comments
 (0)