Skip to content

Commit

Permalink
fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
0x0aa0 committed Nov 22, 2024
1 parent 2420319 commit d9cf91e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/script/EigenDADeployer.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ contract EigenDADeployer is DeployOpenEigenLayer {

uint16[] memory versions = new uint16[](0);
VersionedBlobParams[] memory versionedBlobParams = new VersionedBlobParams[](0);
SecurityThresholds memory defaultSecurityThresholds = SecurityThresholds(33, 55);

eigenDAProxyAdmin.upgradeAndCall(
TransparentUpgradeableProxy(payable(address(eigenDAThresholdRegistry))),
Expand All @@ -257,7 +258,8 @@ contract EigenDADeployer is DeployOpenEigenLayer {
hex"373737",
hex"0001",
versions,
versionedBlobParams
versionedBlobParams,
defaultSecurityThresholds
)
);

Expand Down

0 comments on commit d9cf91e

Please sign in to comment.