From 53edc70ab63ca0119604eaa7c0bf49612f2439cb Mon Sep 17 00:00:00 2001 From: Dmitry Date: Tue, 17 Sep 2019 16:52:06 +0200 Subject: [PATCH] Remove extra parenthesis (#1919) (cherry picked from commit 54182bf31c78fb1b16dfdce40fc9a6a177cb3bca) --- contracts/cryptography/ECDSA.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/cryptography/ECDSA.sol b/contracts/cryptography/ECDSA.sol index b96eca55f..d85ce09de 100644 --- a/contracts/cryptography/ECDSA.sol +++ b/contracts/cryptography/ECDSA.sol @@ -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) {