From 05c4c64c8867a805429cc0edcfc9693fb088b43d Mon Sep 17 00:00:00 2001 From: Leonardo Comandini Date: Tue, 25 Jun 2019 10:42:13 +0200 Subject: [PATCH] Fix importmasterblindingkey help --- src/wallet/rpcdump.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index b8dbb1a1a7..32567f3f59 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -1679,9 +1679,9 @@ UniValue importmasterblindingkey(const JSONRPCRequest& request) if (request.fHelp || request.params.size() != 1) throw std::runtime_error( - RPCHelpMan{"importblindingkey", - "\nImports a master private blinding key in hex for a CT address." - "Note: wallets can only have one master blinding key at a time. Funds could be permanently lost if user doesn't know what they are doing. Recommended use is only for wallet recovery using this in conjunction with `sethdseed`.\n", + RPCHelpMan{"importmasterblindingkey", + "\nImports a master private blinding key in hex for the wallet." + "\nNote: wallets can only have one master blinding key at a time. Funds could be permanently lost if user doesn't know what they are doing. Recommended use is only for wallet recovery using this in conjunction with `sethdseed`.\n", { {"hexkey", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The blinding key in hex"}, },