Skip to content

Commit aaa3242

Browse files
committed
chore: fix ordering
1 parent 0bca74b commit aaa3242

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/test/integration/IntegrationDeployer.t.sol

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,12 +272,13 @@ abstract contract IntegrationDeployer is ExistingDeploymentParser {
272272
// Since we haven't done the slashing upgrade on mainnet yet, upgrade mainnet contracts
273273
// prior to test. `isUpgraded` is true by default, but is set to false in `UpgradeTest.t.sol`
274274
if (isUpgraded) {
275+
cheats.startPrank(executorMultisig);
276+
275277
_deployProxies();
276278
_deployImplementations();
277279
_upgradeProxies();
278280

279281
// Set the `pectraForkTimestamp` on the EigenPodManager. Use pectra state
280-
cheats.startPrank(executorMultisig);
281282
eigenPodManager.setProofTimestampSetter(executorMultisig);
282283
eigenPodManager.setPectraForkTimestamp(BEACON_GENESIS_TIME);
283284
cheats.stopPrank();
@@ -287,9 +288,6 @@ abstract contract IntegrationDeployer is ExistingDeploymentParser {
287288
function _upgradeMainnetContracts() public virtual {
288289
cheats.startPrank(address(protocolCouncil));
289290

290-
// First, deploy the new contracts as empty contracts
291-
emptyContract = new EmptyContract();
292-
293291
TimelockController tc = TimelockController(payable(timelockController));
294292

295293
uint executeTimestamp = tc.getTimestamp(tc.hashOperation(executorMultisig, 0, calldataToExecutor_MOOCOW, bytes32(0), bytes32(0))); // using MOOCOW as it's the last tx in the queue

0 commit comments

Comments
 (0)