electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 7275955eef66a53dbf49b4a4d23579ca039e3cb1
parent 8ca66e70209332fe6dc743ac704152c5bf68c347
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 14 Sep 2014 19:54:28 +0200

default lang is None

Diffstat:
Mlib/mnemonic.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/mnemonic.py b/lib/mnemonic.py @@ -99,7 +99,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): + if lang is None: lang='en' filename = filenames.get(lang[0:2], 'english.txt') path = os.path.join(util.data_dir(), 'wordlist', filename) s = open(path,'r').read().strip()