Skip to content

Commit ceb1e34

Browse files
authored
fixed typo in ECDSA384 (#119)
1 parent 14773f4 commit ceb1e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/libs/crypto/ECDSA384.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ library ECDSA384 {
5353
* @param pubKey_ the full public key of a signer. Equals to `bytes(x) + bytes(y)`.
5454
*
5555
* Note that signatures only from the lower part of the curve are accepted.
56-
* If your `s >= n / 2`, change it to `s = n - s`.
56+
* If your `s > n / 2`, change it to `s = n - s`.
5757
*/
5858
function verify(
5959
Parameters memory curveParams_,

0 commit comments

Comments
 (0)