From ffec513c251b7cecdafe07d9eb5b49caa2ddb408 Mon Sep 17 00:00:00 2001 From: Artem G <175325367+sandstone-ag@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:19:35 +0400 Subject: [PATCH] Fix build after merge of PR#136 --- scripts/deploy/DeployVerification.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,