From b3371029dc569c5caf9a16d4ef1dfd127ce7dd8e Mon Sep 17 00:00:00 2001 From: kevkevinpal Date: Wed, 10 Jun 2026 08:28:32 -0400 Subject: [PATCH] doc: use signing pubkey instead of aggregate xonly key --- src/musig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musig.h b/src/musig.h index 4e1ad5e9e6b..b17d299c6d2 100644 --- a/src/musig.h +++ b/src/musig.h @@ -59,7 +59,7 @@ public: /** * Computes an arbitrary unique session ID to identify ongoing signing sessions. - * It is the SHA256 of the aggregate xonly key, the participant pubkey, the sighash, and the pubnonce + * It is the SHA256 of the signing (aggregate) pubkey, the participant pubkey, the sighash, and the pubnonce */ uint256 MuSig2SessionID(const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256& sighash, const std::vector& pubnonce);