Skip to content

Commit

Permalink
style: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
krogla committed Jan 23, 2025
1 parent ebacce0 commit bbb994c
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions src/CCCP.sol
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,7 @@ contract CCCP is
function _getOperator(uint256 opKey)
internal
view
returns (
uint24 moduleId,
uint64 operatorId,
bool isEnabled,
OperatorState memory state
)
returns (uint24 moduleId, uint64 operatorId, bool isEnabled, OperatorState memory state)
{
LidoOperatorCache memory _c;
(moduleId, operatorId) = __decOpKey(opKey);
Expand All @@ -379,12 +374,7 @@ contract CCCP is
// - if the contract is not paused
isEnabled = flags.isOptedIn && !isDisabled && _c.isActive && !paused();

return (
_c.moduleId,
_c.operatorId,
isEnabled,
state
);
return (_c.moduleId, _c.operatorId, isEnabled, state);
}

function _checkModuleParams(uint24 moduleId, uint64 startIndex, uint64 endIndex) internal view {
Expand Down

0 comments on commit bbb994c

Please sign in to comment.