diff --git a/scripts/DeployAgTokenSideChainMultiBridge.s.sol b/scripts/DeployAgTokenSideChainMultiBridge.s.sol index 2727f7c..391e1f1 100644 --- a/scripts/DeployAgTokenSideChainMultiBridge.s.sol +++ b/scripts/DeployAgTokenSideChainMultiBridge.s.sol @@ -132,10 +132,6 @@ contract DeployAgTokenSideChainMultiBridge is Script, CommonUtils { // add real governor if (vm.envBool("FINALIZE")) { - address realGovernor = vm.envOr( - "REAL_GOVERNOR", - _chainToContract(chainId, ContractType.GovernorMultisig) - ); ICoreBorrow(coreBorrow).removeGovernor(deployer); } } diff --git a/scripts/DeployAngleSideChainMultiBridge.s.sol b/scripts/DeployAngleSideChainMultiBridge.s.sol index 98c4ce7..08af192 100644 --- a/scripts/DeployAngleSideChainMultiBridge.s.sol +++ b/scripts/DeployAngleSideChainMultiBridge.s.sol @@ -120,10 +120,6 @@ contract DeployAngleSideChainMultiBridge is Script, CommonUtils { // add real governor if (vm.envBool("FINALIZE")) { - address realGovernor = vm.envOr( - "REAL_GOVERNOR", - _chainToContract(chainId, ContractType.GovernorMultisig) - ); ICoreBorrow(coreBorrow).removeGovernor(deployer); } }