Skip to content

Commit

Permalink
chore: MAX_NODE_OPERATORS_COUNT type
Browse files Browse the repository at this point in the history
  • Loading branch information
madlabman committed Nov 23, 2023
1 parent b32e184 commit 56c1ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CSModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ contract CSModule is IStakingModule, CSModuleBase {

// @dev max number of node operators is limited by uint64 due to Batch serialization in 32 bytes
// it seems to be enough
uint128 public constant MAX_NODE_OPERATORS_COUNT = type(uint64).max;
uint64 public constant MAX_NODE_OPERATORS_COUNT = type(uint64).max;
bytes32 public constant SIGNING_KEYS_POSITION =
keccak256("lido.CommunityStakingModule.signingKeysPosition");

Expand Down

0 comments on commit 56c1ca6

Please sign in to comment.