Skip to content

Commit

Permalink
fix: enable verifier when deploying the networks (#8500)
Browse files Browse the repository at this point in the history
Fixes an `can't access X on undefined` error and fails a network deploy
if deploying the verifier fails.
  • Loading branch information
alexghr authored Sep 11, 2024
1 parent 32fd347 commit f6d31f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/devnet-deploys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,6 @@ jobs:
./.github/scripts/wait_for_infra.sh pxe ${{ env.DEPLOY_TAG }} ${{ env.API_KEY }}
- name: Deploy verifier (allow failure)
continue-on-error: true
working-directory: ./yarn-project/aztec/terraform/pxe
run: |
set -eo pipefail
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/cli/src/cmds/l1/deploy_l1_verifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export async function deployUltraHonkVerifier(
const output = JSON.parse(solc.compile(JSON.stringify(input)));
log('Compiled UltraHonkVerifier');

const abi = output.contracts['UltraHonkVerifier.sol']['UltraHonkVerifier'].abi;
const abi = output.contracts['UltraHonkVerifier.sol']['HonkVerifier'].abi;
const bytecode: string = output.contracts['UltraHonkVerifier.sol']['HonkVerifier'].evm.bytecode.object;

const { publicClient, walletClient } = createL1Clients(
Expand Down

0 comments on commit f6d31f1

Please sign in to comment.