Skip to content

Commit

Permalink
Remove extra parenthesis (#1919)
Browse files Browse the repository at this point in the history
  • Loading branch information
xotonic authored and nventuro committed Sep 17, 2019
1 parent 5ab6b99 commit 54182bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/cryptography/ECDSA.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ library ECDSA {
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise)
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
Expand Down

0 comments on commit 54182bf

Please sign in to comment.