Skip to content

Commit

Permalink
schnorr.c: fixing comment indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheapshot003 committed Sep 6, 2024
1 parent c693391 commit 839c00e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/schnorr.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ int main(void) {
assert(return_val);

/*** Key Generation ***/
/* If the secret key is zero or out of range (greater than secp256k1's
* order), we return 1. Note that the probability of this occurring
* is negligible with a properly functioning random number generator. */
/* If the secret key is zero or out of range (greater than secp256k1's
* order), we return 1. Note that the probability of this occurring
* is negligible with a properly functioning random number generator. */
if (!fill_random(seckey, sizeof(seckey))) {
printf("Failed to generate randomness\n");
return 1;
Expand Down

0 comments on commit 839c00e

Please sign in to comment.