electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 811f1ee8482521e67da46dde856d3ba27bed2013
parent 2c9b06ae1cc6918ef8cf01f6e12e3b750062a59c
Author: ecdsa <ecdsa@github>
Date:   Tue,  5 Mar 2013 14:57:30 +0100

do not run synchronize on deseeded wallets

Diffstat:
Mlib/wallet.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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)