set command: authorize by default, forbid only when dangerous

This commit is contained in:
ThomasV 2012-10-26 07:05:22 +02:00
parent b59e20a1ad
commit 063fef86aa
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ if __name__ == '__main__':
elif cmd == 'set':
key, value = args[1:3]
if key in ['gui', 'server', 'proxy', 'fee', 'gap_limit', 'use_change']:
if key not in ['seed_version', 'master_public_key', 'use_encryption']:
wallet.config.set_key(key, value, True)
print True
else: