Skip to content

Commit

Permalink
clean up of api, docs, tests for single-signer aggsig
Browse files Browse the repository at this point in the history
  • Loading branch information
yeastplume committed Jan 7, 2018
1 parent 82dae5b commit 635fee6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/modules/aggsig/main_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,12 @@ int secp256k1_aggsig_combine_signatures(const secp256k1_context* ctx, secp256k1_
return 1;
}

int secp256k1_aggsig_add_signatures_single(const secp256k1_context* ctx, unsigned char *sig64, const unsigned char* sig1_64, const unsigned char* sig2_64, const secp256k1_pubkey* pubnonce_total) {
int secp256k1_aggsig_add_signatures_single(const secp256k1_context* ctx,
unsigned char *sig64,
const unsigned char* sig1_64,
const unsigned char* sig2_64,
const secp256k1_pubkey* pubnonce_total) {

secp256k1_scalar s;
secp256k1_ge final;
secp256k1_scalar tmp;
Expand Down

0 comments on commit 635fee6

Please sign in to comment.