Skip to content

Commit

Permalink
Fix typo (Chia-Network#3069)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniobg committed Apr 29, 2021
1 parent e3ab63a commit ad205d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chia/util/keychain.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def bytes_to_mnemonic(mnemonic_bytes: bytes):
start = i * 11
end = start + 11
bits = bitarray[start:end]
m_word_poition = bits.uint
m_word = word_list[m_word_poition]
m_word_position = bits.uint
m_word = word_list[m_word_position]
mnemonics.append(m_word)

return " ".join(mnemonics)
Expand Down

0 comments on commit ad205d9

Please sign in to comment.