Skip to content

Commit

Permalink
[#108] use hash in defaultValidator instead of hash of hash
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Oct 23, 2023
1 parent a2fb4d6 commit 630dc0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/SignatureValidatorManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ contract SignatureValidatorManager is RegistryManager, ISafeProtocolFunctionHand
bytes1(0x01),
IAccount(account).domainSeparator(),
ACCOUNT_MSG_TYPEHASH,
abi.encode(keccak256(abi.encode(hash)))
hash
);
bytes32 messageHash = keccak256(messageData);
IAccount(account).checkSignatures(messageHash, messageData, signatures);
Expand Down

0 comments on commit 630dc0e

Please sign in to comment.