URI: 
       tfix variable name in from_seed - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit eb9802356a64743daf067c2cd9593cb7bd6eb2b1
   DIR parent 42ed67e8c7181e78c6195bd98b75318d12b1e46f
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu,  9 Apr 2015 18:59:51 +0200
       
       fix variable name in from_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@@ -1814,7 +1814,7 @@ class Wallet(object):
                elif is_new_seed(seed):
                    klass = NewWallet
                w = klass(storage)
       -        w.add_seed(text, password)
       +        w.add_seed(seed, password)
                w.create_master_keys(password)
                w.create_main_account(password)
                return w