This commit is contained in:
ThomasV 2016-04-29 12:52:27 +02:00
parent 2af42168a4
commit 10d26806d9
1 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,8 @@ class Mnemonic(object):
# Seed derivation no longer follows BIP39
# Mnemonic phrase uses a hash based checksum, instead of a wordlist-dependent checksum
def __init__(self, lang='en'):
def __init__(self, lang=None):
lang = lang or 'en'
print_error('language', lang)
filename = filenames.get(lang[0:2], 'english.txt')
path = os.path.join(os.path.dirname(__file__), 'wordlist', filename)