We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b0b22b commit 0492592Copy full SHA for 0492592
src/modules/musig/musig.md
@@ -17,8 +17,8 @@ using the equation
17
where `P_i` is the public key of the `i`th participant and `µ_i` is a so-called
18
_MuSig coefficient_ computed according to the following equation
19
20
- C = H(P_1 || P_2 || ... || P_n)
21
- µ_i = H(C || i)
+ L = H(P_1 || P_2 || ... || P_n)
+ µ_i = H(L || i)
22
23
where H is a hash function modelled as a random oracle.
24
@@ -61,7 +61,7 @@ by calling `secp256k1_musig_pubkey_combine`.
61
62
This function takes as input a list of public keys `P_i` in the argument
63
`pubkeys`. It outputs the combined public key `P` in the out-pointer `combined_pk`
64
-and hash `C` in the out-pointer `pk_hash32`, if this pointer is non-NULL.
+and hash `L` in the out-pointer `pk_hash32`, if this pointer is non-NULL.
65
66
## Signing
67
0 commit comments