From 1d25e81928d182acaf4708a90534f5e40c769f03 Mon Sep 17 00:00:00 2001 From: aritkulova Date: Mon, 25 Nov 2024 14:31:34 +0200 Subject: [PATCH] fixed typo in ECDSA384 --- contracts/libs/crypto/ECDSA384.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/libs/crypto/ECDSA384.sol b/contracts/libs/crypto/ECDSA384.sol index 59704e2..940718f 100644 --- a/contracts/libs/crypto/ECDSA384.sol +++ b/contracts/libs/crypto/ECDSA384.sol @@ -53,7 +53,7 @@ library ECDSA384 { * @param pubKey_ the full public key of a signer. Equals to `bytes(x) + bytes(y)`. * * Note that signatures only from the lower part of the curve are accepted. - * If your `s >= n / 2`, change it to `s = n - s`. + * If your `s > n / 2`, change it to `s = n - s`. */ function verify( Parameters memory curveParams_,