From 33c183371f2655b08e2f1494b505047b01174a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Negovanovi=C4=87?= Date: Tue, 5 Mar 2024 14:56:39 +0100 Subject: [PATCH] Fix --- deployment/v2/4_createRollup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/v2/4_createRollup.ts b/deployment/v2/4_createRollup.ts index 935a14257..7072709c3 100644 --- a/deployment/v2/4_createRollup.ts +++ b/deployment/v2/4_createRollup.ts @@ -135,7 +135,7 @@ async function main() { // Load Rollup manager const PolgonRollupManagerFactory = await ethers.getContractFactory("PolygonRollupManager", deployer); const rollupManagerContract = PolgonRollupManagerFactory.attach( - deployOutput.polygonRollupManager + deployOutput.polygonRollupManagerAddress ) as PolygonRollupManager; const DEFAULT_ADMIN_ROLE = ethers.ZeroHash; @@ -178,7 +178,7 @@ async function main() { deployOutput.polygonZkEVMGlobalExitRootAddress, deployOutput.polTokenAddress, deployOutput.polygonZkEVMBridgeAddress, - deployOutput.polygonRollupManager + deployOutput.polygonRollupManagerAddress ); await PolygonconsensusContract.waitForDeployment();