tset command: authorize by default, forbid only when dangerous - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 063fef86aae07e2a64ac70338d88bceb44db57cb DIR parent b59e20a1ad8df7a29502f5a66c6016aeccf479ad HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 26 Oct 2012 07:05:22 +0200 set command: authorize by default, forbid only when dangerous Diffstat: M electrum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum b/electrum t@@ -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: