From 824cfaffdda617c5e9ec5404947b5f9ab1e4d0c1 Mon Sep 17 00:00:00 2001 From: Edmund Edgar Date: Wed, 22 Nov 2023 05:10:00 +0000 Subject: [PATCH] Fix bug where we were making 2 zkevms for the second fork instead of 1 zkevm and 1 bridge --- contracts/ForkingManager.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/ForkingManager.sol b/contracts/ForkingManager.sol index 90a2bed6..6521671f 100644 --- a/contracts/ForkingManager.sol +++ b/contracts/ForkingManager.sol @@ -238,7 +238,7 @@ contract ForkingManager is IForkingManager, ForkableStructure { ); IForkingManager(newInstances.forkingManager.two).initialize( newInstances.zkEVM.two, - newInstances.zkEVM.two, + newInstances.bridge.two, newInstances.forkonomicToken.two, address(this), newInstances.globalExitRoot.two,