do not run synchronize on deseeded wallets
authorecdsa <ecdsa@github>
Tue, 5 Mar 2013 13:57:30 +0000 (14:57 +0100)
committerecdsa <ecdsa@github>
Tue, 5 Mar 2013 13:57:30 +0000 (14:57 +0100)
lib/wallet.py

index 52ca49b..7e7fd70 100644 (file)
@@ -389,6 +389,7 @@ class Wallet:
         return new
 
     def synchronize(self):
+        if self.seed is None: return
         new = []
         for account in self.accounts.keys():
             new += self.synchronize_account(account)