From 3045e6d4d90306be7a5e3a23cdd8e30d3e4c9caa Mon Sep 17 00:00:00 2001 From: petersssong Date: Tue, 11 Jun 2024 02:10:56 +0800 Subject: [PATCH] fix --- crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c b/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c index b040bb0733..e8ed4657bb 100644 --- a/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c +++ b/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c @@ -262,7 +262,7 @@ void test_exhaustive_sign(const secp256k1_context *ctx, const secp256k1_ge *grou secp256k1_ecdsa_signature_load(ctx, &r, &s, &sig); /* Note that we compute expected_r *after* signing -- this is important - * because our nonce-computing function function might change k during + * because our nonce-computing function might change k during * signing. */ r_from_k(&expected_r, group, k); CHECK(r == expected_r); @@ -335,7 +335,7 @@ void test_exhaustive_recovery_sign(const secp256k1_context *ctx, const secp256k1 secp256k1_ecdsa_recoverable_signature_convert(ctx, &sig, &rsig); secp256k1_ecdsa_signature_load(ctx, &r, &s, &sig); /* Note that we compute expected_r *after* signing -- this is important - * because our nonce-computing function function might change k during + * because our nonce-computing function might change k during * signing. */ r_from_k(&expected_r, group, k); CHECK(r == expected_r);