Skip to content

Commit dd83e72

Browse files
committed
Add ordinary tweak info
1 parent d26100c commit dd83e72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modules/musig/musig.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Therefore, users of the musig module must take great care to make sure of the fo
2323
# Key Aggregation and (Taproot) Tweaking
2424

2525
Given a set of public keys, the aggregate public key is computed with `secp256k1_musig_pubkey_agg`.
26-
A (Taproot) tweak can be added to the resulting public key with `secp256k1_xonly_pubkey_tweak_add`.
26+
A (Taproot) tweak can be added to the resulting public key with `secp256k1_xonly_pubkey_tweak_add` and an ordinary tweak can be added with `secp256k1_ec_pubkey_tweak_add`.
2727

2828
# Signing
2929

@@ -32,7 +32,7 @@ Essentially, the protocol proceeds in the following steps:
3232

3333
1. Generate a keypair with `secp256k1_keypair_create` and obtain the xonly public key with `secp256k1_keypair_xonly_pub`.
3434
2. Call `secp256k1_musig_pubkey_agg` with the xonly pubkeys of all participants.
35-
3. Optionally add a (Taproot) tweak with `secp256k1_musig_pubkey_xonly_tweak_add`.
35+
3. Optionally add a (Taproot) tweak with `secp256k1_musig_pubkey_xonly_tweak_add` and an ordinary tweak with `secp256k1_musig_pubkey_ec_tweak_add`.
3636
4. Generate a pair of secret and public nonce with `secp256k1_musig_nonce_gen` and send the public nonce to the other signers.
3737
5. Someone (not necessarily the signer) aggregates the public nonce with `secp256k1_musig_nonce_agg` and sends it to the signers.
3838
6. Process the aggregate nonce with `secp256k1_musig_nonce_process`.

0 commit comments

Comments
 (0)