URI: 
       tfix: get_action should call get_master_public_key - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0511d7e76f6be38425ff13c2c74b8792e4bfffa4
   DIR parent 2c38e85a5032e82fd666ecb00eab4d7d5193982e
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Tue,  1 Jul 2014 19:17:43 +0200
       
       fix: get_action should call get_master_public_key
       
       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@@ -1258,7 +1258,7 @@ class Deterministic_Wallet(Abstract_Wallet):
                return True
        
            def get_action(self):
       -        if not self.get_master_public_keys():
       +        if not self.get_master_public_key():
                    return 'create_seed'
                if not self.accounts:
                    return 'create_accounts'