From 8534ec603f285ee60f19bfabfa98b3cc3ce14fbe Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 5 May 2014 09:13:10 +0200 Subject: [PATCH] dumpprivkey -> getprivatekeys --- lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index 1e18c4889..c0a38fff9 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -63,7 +63,7 @@ register_command('createmultisig', 2, 2, False, True, False, 'similar to register_command('createrawtransaction', 2, 2, False, True, False, 'similar to bitcoind\'s command') register_command('deseed', 0, 0, False, True, False, 'Remove seed from wallet, creating a seedless, watching-only wallet.') register_command('decoderawtransaction', 1, 1, False, False, False, 'similar to bitcoind\'s command') -register_command('getprivatekeys', 1, 1, False, True, True, 'Get the private keys of a given address', 'dumpprivkey ') +register_command('getprivatekeys', 1, 1, False, True, True, 'Get the private keys of a given address', 'getprivatekeys ') register_command('dumpprivkeys', 0, 0, False, True, True, 'Dump all private keys in your wallet') register_command('freeze', 1, 1, False, True, True, 'Freeze the funds at one of your wallet\'s addresses', 'freeze
') register_command('getbalance', 0, 1, True, True, False, 'Return the balance of your wallet, or of one account in your wallet', 'getbalance []')