Skip to content

Commit

Permalink
sync with main
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Oct 5, 2023
2 parents 7608e5f + 0d952d4 commit 16dc31c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
8 changes: 4 additions & 4 deletions infrastructure/zk/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export async function init(initArgs: InitArgs = DEFAULT_ARGS) {
await announced('Deploying L1 verifier', contract.deployVerifier([]));
await announced('Reloading env', env.reload());
await announced('Running server genesis setup', server.genesisFromSources());
await announced('Deploying L1 contracts', contract.redeployL1([]));
await announced('Initializing validator', contract.initializeValidator());
await announced('Initialize L1 allow list', contract.initializeL1AllowList());
await announced('Deploying L1 contracts', contract.redeployL1(governorPrivateKeyArgs));
await announced('Initializing validator', contract.initializeValidator(governorPrivateKeyArgs));
await announced('Initialize L1 allow list', contract.initializeL1AllowList(governorPrivateKeyArgs));
await announced(
'Deploying L2 contracts',
contract.deployL2(
Expand All @@ -66,7 +66,7 @@ export async function init(initArgs: InitArgs = DEFAULT_ARGS) {
if (deployerL2ContractInput.includeL2WETH) {
await announced('Initializing L2 WETH token', contract.initializeWethToken(governorPrivateKeyArgs));
}
await announced('Initializing governance', contract.initializeGovernance());
await announced('Initializing governance', contract.initializeGovernance(governorPrivateKeyArgs));
}

// A smaller version of `init` that "resets" the localhost environment, for which `init` was already called before.
Expand Down
10 changes: 10 additions & 0 deletions prover/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 16dc31c

Please sign in to comment.