From df960a9ba775569ad75d4e7b201a4f04fa832f6c Mon Sep 17 00:00:00 2001 From: Eirik Ogilvie-Wigley Date: Mon, 23 Apr 2018 15:14:56 -0600 Subject: [PATCH] Clarify help text of dumpprivkey --- src/wallet/rpcdump.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 0e232373d..938fc258a 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -388,13 +388,13 @@ UniValue dumpprivkey(const UniValue& params, bool fHelp) if (fHelp || params.size() != 1) throw runtime_error( - "dumpprivkey \"zcashaddress\"\n" - "\nReveals the private key corresponding to 'zcashaddress'.\n" + "dumpprivkey \"t-addr\"\n" + "\nReveals the private key corresponding to 't-addr'.\n" "Then the importprivkey can be used with this output\n" "\nArguments:\n" - "1. \"zcashaddress\" (string, required) The zcash address for the private key\n" + "1. \"t-addr\" (string, required) The transparent address for the private key\n" "\nResult:\n" - "\"key\" (string) The private key\n" + "\"key\" (string) The private key\n" "\nExamples:\n" + HelpExampleCli("dumpprivkey", "\"myaddress\"") + HelpExampleCli("importprivkey", "\"mykey\"")