Skip to content

Commit

Permalink
Merge #142: musig: fix session_init argument NULL check
Browse files Browse the repository at this point in the history
9124ce0 musig: fix session_init argument NULL check (Jonas Nick)

Pull request description:

ACKs for top commit:
  real-or-random:
    ACK 9124ce0

Tree-SHA512: 15b6e4012a2444803563151a37e3340e3aa59729ccafebfd80aac17b93f5429dc2b3c99e37119bfd68523f1e58ffd3efca67922d6cb4a2bbb7c8679de9f36097
  • Loading branch information
jonasnick committed Aug 18, 2021
2 parents 881b15c + 9124ce0 commit 9447642
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 9447642

Please sign in to comment.