Skip to content

Commit

Permalink
musig: fix session_init argument NULL check
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasnick committed Aug 18, 2021
1 parent 881b15c commit 9124ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/secp256k1_musig.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ SECP256K1_API int secp256k1_musig_session_init(
const secp256k1_musig_pre_session *pre_session,
size_t n_signers,
const unsigned char *seckey
) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4) SECP256K1_ARG_NONNULL(5) SECP256K1_ARG_NONNULL(7) SECP256K1_ARG_NONNULL(8) SECP256K1_ARG_NONNULL(11);
) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4) SECP256K1_ARG_NONNULL(5) SECP256K1_ARG_NONNULL(7) SECP256K1_ARG_NONNULL(8) SECP256K1_ARG_NONNULL(10);

/** Gets the signer's public nonce given a list of all signers' data with
* commitments. Called by participating signers after
Expand Down

0 comments on commit 9124ce0

Please sign in to comment.