From 5954ea3f824b9901a40ecb58e87a2236e88945c4 Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Wed, 15 Dec 2021 16:54:40 +0000 Subject: [PATCH] Update src/modules/musig/session_impl.h Co-authored-by: Elliott Jin <4276679+robot-dreams@users.noreply.github.com> --- src/modules/musig/session_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/musig/session_impl.h b/src/modules/musig/session_impl.h index 5a31f04e1..3a45ffdc6 100644 --- a/src/modules/musig/session_impl.h +++ b/src/modules/musig/session_impl.h @@ -702,7 +702,7 @@ int secp256k1_musig_partial_sig_verify(const secp256k1_context* ctx, const secp2 * = d_tweak*d_agg*d[i]*P[i] * = d_tweak*d_agg*|P[i]| * - * The if condition is below is true whenever d_tweak*d_agg is + * The if condition below is true whenever d_tweak*d_agg is * negative (again, see the explanation in musig_partial_sign). In * this case, the verifier negates e which will have the same end * result as negating |P[i]|, since they are multiplied later anyway.