Skip to content

Commit

Permalink
Fix importmasterblindingkey help
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoComandini committed Jun 25, 2019
1 parent 7b302eb commit 05c4c64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wallet/rpcdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
},
Expand Down

0 comments on commit 05c4c64

Please sign in to comment.