Skip to content

Commit

Permalink
Revert EIP 712 hash modification (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
cairoeth authored Sep 23, 2024
2 parents ccf6c0a + a9ab3e5 commit 3de4cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VotesPartialDelegationUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ abstract contract VotesPartialDelegationUpgradeable is
bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
/// @notice Typehash for partial delegation.
bytes32 public constant PARTIAL_DELEGATION_ON_BEHALF_TYPEHASH = keccak256(
"PartialDelegationOnBehalf(address delegator,PartialDelegation[] delegations,uint256 nonce,uint256 expiry)"
"PartialDelegationOnBehalf(address delegator,PartialDelegation[] delegations,uint256 nonce,uint256 expiry)PartialDelegation(address delegatee,uint96 numerator)"
);
/// @notice Typehash for partial delegation.
bytes32 public constant PARTIAL_DELEGATION_TYPEHASH =
Expand Down

0 comments on commit 3de4cec

Please sign in to comment.