Skip to content

Commit

Permalink
docstrings: Fix linebreak
Browse files Browse the repository at this point in the history
  • Loading branch information
real-or-random committed Nov 27, 2024
1 parent cdd5573 commit 873a609
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@ This function interprets `hostseckey` as big-endian integer, and computes
the corresponding "plain" public key in compressed serialization (33 bytes,
starting with 0x02 or 0x03). This is the key generation procedure
traditionally used in Bitcoin, e.g., for ECDSA. In other words, this
function is equivalent to `IndividualPubkey` as defined in [[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)].
function is equivalent to `IndividualPubkey` as defined in
[[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)].
TODO Refer to the FROST signing BIP instead, once that one has a number.

*Arguments*:
Expand Down
3 changes: 2 additions & 1 deletion python/chilldkg_ref/chilldkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ def hostpubkey_gen(hostseckey: bytes) -> bytes:
the corresponding "plain" public key in compressed serialization (33 bytes,
starting with 0x02 or 0x03). This is the key generation procedure
traditionally used in Bitcoin, e.g., for ECDSA. In other words, this
function is equivalent to `IndividualPubkey` as defined in [[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)].
function is equivalent to `IndividualPubkey` as defined in
[[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)].
TODO Refer to the FROST signing BIP instead, once that one has a number.
Arguments:
Expand Down

0 comments on commit 873a609

Please sign in to comment.