Browse Source

fix: password is not None

283
thomasv 13 years ago
parent
commit
fc2b6b0328
  1. 2
      client/electrum.py

2
client/electrum.py

@ -628,7 +628,7 @@ class Wallet:
return s
def pw_decode(self, s, password):
if password:
if password is not None:
secret = Hash(password)
d = DecodeAES(secret, s)
if s == self.seed:

Loading…
Cancel
Save