URI: 
       tadd_seed - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6d75ca795be7a2de5f7537744769cdf6791097c8
   DIR parent 45514c7ba942c4e021e81f530a8728458ffa0a2f
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 28 Apr 2014 14:58:43 +0200
       
       add_seed
       
       Diffstat:
         M gui/qt/installwizard.py             |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
       t@@ -294,7 +294,7 @@ class InstallWizard(QDialog):
                    if not self.verify_seed(seed, sid):
                        return
                    password = self.password_dialog()
       -            wallet.save_seed(seed, password)
       +            wallet.add_seed(seed, password)
        
                    if action == 'create2of3':
                        run_hook('create_third_key', wallet, self)
       t@@ -315,7 +315,7 @@ class InstallWizard(QDialog):
                        if Wallet.is_seed(text):
                            password = self.password_dialog()
                            wallet = Wallet.from_seed(text, self.storage)
       -                    wallet.save_seed(text, password)
       +                    wallet.add_seed(text, password)
                            wallet.create_accounts(password)
                        elif Wallet.is_mpk(text):
                            wallet = Wallet.from_mpk(text, self.storage)