Skip to content

Commit

Permalink
Wait for the upgrade executor deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJeremyHe committed Jul 29, 2024
1 parent 8adacdc commit cfde500
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/deploymentUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ export async function deployAllContracts(
)
const rollupUser = await deployContract('RollupUserLogic', signer, [], verify)
const upgradeExecutor = await deployUpgradeExecutor(signer)
await upgradeExecutor.deployTransaction.wait()
const validatorUtils = await deployContract(
'ValidatorUtils',
signer,
Expand Down
2 changes: 1 addition & 1 deletion scripts/local-deployment/deployCreatorAndCreateRollup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function main() {

const deployerWallet = new ethers.Wallet(
deployerPrivKey,
new ethers.providers.JsonRpcProvider(parentChainRpc)
new ethers.providers.JsonRpcProvider({url: parentChainRpc, timeout: 240* 1000})
)

const maxDataSize =
Expand Down

0 comments on commit cfde500

Please sign in to comment.