1
0

fix bug with undetected incorrect password that can damage wallet

This commit is contained in:
ThomasV
2013-01-06 09:41:06 +01:00
parent 75247de92f
commit 04322b7cc9
5 changed files with 29 additions and 27 deletions

View File

@@ -709,7 +709,7 @@ def seed_dialog():
password = None
try:
seed = wallet.pw_decode( wallet.seed, password)
seed = wallet.decode_seed(password)
except:
modal_dialog('error','incorrect password')
return
@@ -725,7 +725,7 @@ def change_password_dialog():
password = None
try:
seed = wallet.pw_decode( wallet.seed, password)
seed = wallet.decode_seed(password)
except:
modal_dialog('error','incorrect password')
return