Skip to content

Commit

Permalink
fix stack too deep compilation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ethenotethan committed Jul 9, 2024
1 parent 3ced162 commit acc6f31
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/rollup/RollupCreator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ contract RollupCreator is Ownable {
address bridge,
address upgradeExecutor,
address validatorUtils,
address validatorWalletCreator,
address eigenDARollupManager
address validatorWalletCreator
);
event TemplatesUpdated();

Expand Down Expand Up @@ -232,8 +231,7 @@ contract RollupCreator is Ownable {
address(bridgeContracts.bridge),
address(upgradeExecutor),
address(validatorUtils),
address(validatorWalletCreator),
deployParams.eigenDARollupManager
address(validatorWalletCreator)
);
return address(rollup);
}
Expand Down

0 comments on commit acc6f31

Please sign in to comment.