Skip to content

Commit

Permalink
comment correction
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmukai committed Aug 11, 2023
1 parent 49e5420 commit 3bca811
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/seedsigner/helpers/mnemonic_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def generate_mnemonic_from_coin_flips(coin_flips: str, wordlist_language_code: s

def get_partial_final_word(coin_flips: str, wordlist_language_code: str = WORDLIST_LANGUAGE__ENGLISH) -> str:
""" Look up the partial final word for the given coin flips.
7 coin flips: 0101010 + 0000 where the final 4 bits will be replaced with the checksum
3 coin flips: 0101 + 0000000 where the final 8 bits will be replaced with the checksum
7 coin flips: 0101010 + **** where the final 4 bits will be replaced with the checksum
3 coin flips: 010 + ******** where the final 8 bits will be replaced with the checksum
"""
binary_string = coin_flips + "0" * (11 - len(coin_flips))
wordlist_index = int(binary_string, 2)
Expand Down

0 comments on commit 3bca811

Please sign in to comment.