Skip to content

Commit

Permalink
fix spacing in OPERATOR_CHURN_APPROVAL_TYPEHASH definition
Browse files Browse the repository at this point in the history
See comment [here](#35 (comment))
This change matches the example in [EIP 712](https://eips.ethereum.org/EIPS/eip-712)
  • Loading branch information
ChaoticWalrus committed Oct 10, 2023
1 parent 6310f6e commit 163c018
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ contract BLSRegistryCoordinatorWithIndices is EIP712, Initializable, IBLSRegistr

/// @notice The EIP-712 typehash for the `DelegationApproval` struct used by the contract
bytes32 public constant OPERATOR_CHURN_APPROVAL_TYPEHASH =
keccak256("OperatorChurnApproval(bytes32 registeringOperatorId, OperatorKickParam[] operatorKickParams)OperatorKickParam(address operator, BN254.G1Point pubkey, bytes32[] operatorIdsToSwap)BN254.G1Point(uint256 x, uint256 y)");
keccak256("OperatorChurnApproval(bytes32 registeringOperatorId,OperatorKickParam[] operatorKickParams)OperatorKickParam(address operator,BN254.G1Point pubkey,bytes32[] operatorIdsToSwap)BN254.G1Point(uint256 x,uint256 y)");
/// @notice The basis point denominator
uint16 internal constant BIPS_DENOMINATOR = 10000;
/// @notice The maximum value of a quorum bitmap
Expand Down

0 comments on commit 163c018

Please sign in to comment.