minor fixes
This commit is contained in:
8
electrum
8
electrum
@@ -347,9 +347,9 @@ if __name__ == '__main__':
|
||||
if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
|
||||
wallet.config.path = ns
|
||||
wallet.seed = ''
|
||||
wallet.config.set_key('seed', '', True)
|
||||
wallet.storage.put('seed', '', True)
|
||||
wallet.use_encryption = False
|
||||
wallet.config.set_key('use_encryption', wallet.use_encryption, True)
|
||||
wallet.storage.put('use_encryption', wallet.use_encryption, True)
|
||||
for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
|
||||
wallet.config.set_key('imported_keys',wallet.imported_keys, True)
|
||||
print_msg("Done.")
|
||||
@@ -358,12 +358,12 @@ if __name__ == '__main__':
|
||||
|
||||
elif cmd == 'getconfig':
|
||||
key = args[1]
|
||||
print_msg(wallet.config.get(key))
|
||||
print_msg(config.get(key))
|
||||
|
||||
elif cmd == 'setconfig':
|
||||
key, value = args[1:3]
|
||||
if key not in ['seed', 'seed_version', 'master_public_key', 'use_encryption']:
|
||||
wallet.config.set_key(key, value, True)
|
||||
config.set_key(key, value, True)
|
||||
print_msg(True)
|
||||
else:
|
||||
print_msg(False)
|
||||
|
||||
Reference in New Issue
Block a user