Skip to content

Commit

Permalink
Merge pull request #142 from lidofinance/fix/fix-after-merge-pr-136
Browse files Browse the repository at this point in the history
Fix build after merge of PR#136
  • Loading branch information
Psirex authored Oct 23, 2024
2 parents b9b0ae6 + ffec513 commit 534ab6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy/DeployVerification.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 534ab6b

Please sign in to comment.