Browse Source

fix bug with has_seed

283
ThomasV 11 years ago
parent
commit
84052bcdb2
  1. 6
      lib/bitcoin.py
  2. 4
      lib/wallet.py

6
lib/bitcoin.py

@ -299,7 +299,11 @@ def is_address(addr):
def is_private_key(key):
return ASecretToSecret(key) is not False
try:
k = ASecretToSecret(key)
return k is not False
except:
return False
########### end pywallet functions #######################

4
lib/wallet.py

@ -1126,10 +1126,10 @@ class Deterministic_Wallet(Abstract_Wallet):
Abstract_Wallet.__init__(self, storage)
def has_seed(self):
return self.seed == ''
return self.seed != ''
def is_watching_only(self):
return self.has_seed()
return not self.has_seed()
def check_password(self, password):
self.get_seed(password)

Loading…
Cancel
Save