diff --git a/scripts/deploy/DeployVerification.sol b/scripts/deploy/DeployVerification.sol index c6a8879f..f17dbe40 100644 --- a/scripts/deploy/DeployVerification.sol +++ b/scripts/deploy/DeployVerification.sol @@ -163,7 +163,7 @@ library DeployVerification { DualGovernance dg = DualGovernance(res.dualGovernance); require(address(dg.TIMELOCK()) == res.timelock, "Incorrect address for timelock in DualGovernance"); require( - address(dg.RESEAL_MANAGER()) == res.resealManager, "Incorrect address for resealManager in DualGovernance" + address(dg.getResealManager()) == res.resealManager, "Incorrect address for resealManager in DualGovernance" ); require( dg.MIN_TIEBREAKER_ACTIVATION_TIMEOUT() == dgDeployConfig.MIN_TIEBREAKER_ACTIVATION_TIMEOUT,