Skip to content

Commit f6d31f1

Browse files
authored
fix: enable verifier when deploying the networks (#8500)
Fixes an `can't access X on undefined` error and fails a network deploy if deploying the verifier fails.
1 parent 32fd347 commit f6d31f1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/devnet-deploys.yml

-1
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,6 @@ jobs:
771771
./.github/scripts/wait_for_infra.sh pxe ${{ env.DEPLOY_TAG }} ${{ env.API_KEY }}
772772
773773
- name: Deploy verifier (allow failure)
774-
continue-on-error: true
775774
working-directory: ./yarn-project/aztec/terraform/pxe
776775
run: |
777776
set -eo pipefail

yarn-project/cli/src/cmds/l1/deploy_l1_verifier.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export async function deployUltraHonkVerifier(
5757
const output = JSON.parse(solc.compile(JSON.stringify(input)));
5858
log('Compiled UltraHonkVerifier');
5959

60-
const abi = output.contracts['UltraHonkVerifier.sol']['UltraHonkVerifier'].abi;
60+
const abi = output.contracts['UltraHonkVerifier.sol']['HonkVerifier'].abi;
6161
const bytecode: string = output.contracts['UltraHonkVerifier.sol']['HonkVerifier'].evm.bytecode.object;
6262

6363
const { publicClient, walletClient } = createL1Clients(

0 commit comments

Comments
 (0)