Skip to content

Commit 0492592

Browse files
committed
f replace C by L
1 parent 6b0b22b commit 0492592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/modules/musig/musig.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ using the equation
1717
where `P_i` is the public key of the `i`th participant and `µ_i` is a so-called
1818
_MuSig coefficient_ computed according to the following equation
1919

20-
C = H(P_1 || P_2 || ... || P_n)
21-
µ_i = H(C || i)
20+
L = H(P_1 || P_2 || ... || P_n)
21+
µ_i = H(L || i)
2222

2323
where H is a hash function modelled as a random oracle.
2424

@@ -61,7 +61,7 @@ by calling `secp256k1_musig_pubkey_combine`.
6161

6262
This function takes as input a list of public keys `P_i` in the argument
6363
`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.
64+
and hash `L` in the out-pointer `pk_hash32`, if this pointer is non-NULL.
6565

6666
## Signing
6767

0 commit comments

Comments
 (0)