Dont confirm password from command line, patch by ErebusBat

This commit is contained in:
Maran 2012-08-01 21:51:40 +02:00
parent 04300ea545
commit d803e3ab30
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ if __name__ == '__main__':
# commands needing password
if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
password = prompt_password('Password:') if wallet.use_encryption and not is_temporary else None
password = prompt_password('Password:', False) if wallet.use_encryption and not is_temporary else None
# check password
try:
wallet.pw_decode( wallet.seed, password)