From 8c7c24eb8a00c9d9122d6f9a6ec30b4f8fca20b4 Mon Sep 17 00:00:00 2001 From: mllwchrry Date: Mon, 16 Feb 2026 13:01:42 +0200 Subject: [PATCH] docs: simplify README description, fix musig docs --- README.md | 2 +- doc/musig.md | 2 +- include/secp256k1_musig.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 488044b4..675c2da2 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ libsecp256k1-zkp ![Dependencies: None](https://img.shields.io/badge/dependencies-none-success) -A fork of [libsecp256k1](https://github.com/bitcoin-core/secp256k1) with support for advanced and experimental features such as Confidential Assets and Bulletproofs++ range proofs +A fork of [libsecp256k1](https://github.com/bitcoin-core/secp256k1) with support for advanced and experimental features Added features: * Experimental module for ECDSA adaptor signatures. diff --git a/doc/musig.md b/doc/musig.md index ad09d983..3732782f 100644 --- a/doc/musig.md +++ b/doc/musig.md @@ -54,7 +54,7 @@ Similarly, the API supports an alternative protocol flow where generating the ag A participant who wants to verify the partial signatures, but does not sign itself may do so using the above instructions except that the verifier skips steps 1, 4 and 7. -# Atomic Swaps +## Atomic Swaps The signing API supports the production of "adaptor signatures", modified partial signatures which are offset by an auxiliary secret known to one party. That is, diff --git a/include/secp256k1_musig.h b/include/secp256k1_musig.h index 97243033..d49f2e09 100644 --- a/include/secp256k1_musig.h +++ b/include/secp256k1_musig.h @@ -544,7 +544,7 @@ SECP256K1_API int secp256k1_musig_partial_sign( * create the `session` with `musig_nonce_process`. * * This function is essential when using protocols with adaptor signatures. - * It is not required to call this function in regular MuSig sessions, because + * Without adaptor signatures, it is not required to call this function in regular MuSig sessions, because * if any partial signature does not verify, the final signature will not * verify either, so the problem will be caught. However, this function * provides the ability to identify which specific partial signature fails