Skip to content

Commit

Permalink
[C] fix name of aggregate_verify by adding prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vindaar authored and mratsim committed May 18, 2024
1 parent 824ff7c commit 39a4f24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/constantine/protocols/ethereum_bls_signatures.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ ctt_eth_bls_status ctt_eth_bls_fast_aggregate_verify(const ctt_eth_bls_pubkey pu
* 1. Public keys signing the same message MUST be aggregated and checked for 0 before calling this function.
* 2. Augmentation or Proof of possessions must used for each public keys.
*/
ctt_eth_bls_status aggregate_verify(const ctt_eth_bls_pubkey* pubkeys,
const ctt_span messages[],
ptrdiff_t len,
const ctt_eth_bls_signature* aggregate_sig) __attribute__((warn_unused_result));
ctt_eth_bls_status ctt_eth_bls_aggregate_verify(const ctt_eth_bls_pubkey* pubkeys,
const ctt_span messages[],
ptrdiff_t len,
const ctt_eth_bls_signature* aggregate_sig) __attribute__((warn_unused_result));


/** Verify that all (pubkey, message, signature) triplets are valid
Expand Down

0 comments on commit 39a4f24

Please sign in to comment.