fix: password is not None

This commit is contained in:
thomasv 2011-12-20 16:04:26 +01:00
parent 889eb101ff
commit fc2b6b0328
1 changed files with 1 additions and 1 deletions

View File

@ -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: