From 811f1ee8482521e67da46dde856d3ba27bed2013 Mon Sep 17 00:00:00 2001 From: ecdsa Date: Tue, 5 Mar 2013 14:57:30 +0100 Subject: [PATCH] do not run synchronize on deseeded wallets --- lib/wallet.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 52ca49b..7e7fd70 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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) -- 1.7.1