From ea8c6187d23215f4f2303583f36144675df235f4 Mon Sep 17 00:00:00 2001 From: kien6034 Date: Wed, 12 Jun 2024 21:01:43 +0700 Subject: [PATCH] style: remote dup works --- 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);