URI: 
       tfix: get_seed - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 430c7aa92ed625605f9f54d464c6d1623c2a99f9
   DIR parent c9fc6275ab47936f75f74d1a48aa4affabf6a2b7
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun,  4 May 2014 19:52:47 +0200
       
       fix: get_seed
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -1378,7 +1378,7 @@ class NewWallet(Deterministic_Wallet):
        
        
            def create_master_keys(self, password):
       -        xpriv, xpub = bip32_root(self.get_seed(password))
       +        xpriv, xpub = bip32_root(mnemonic_to_seed(self.get_seed(password),'').encode('hex'))
                self.add_master_public_key("m/", xpub)
                self.add_master_private_key("m/", xpriv, password)