doc: Fix minor typos in rpc help

This commit is contained in:
MarcoFalke 2025-05-15 16:10:29 +02:00
parent fae840e94b
commit fa1f10a49e
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -89,10 +89,10 @@ static RPCHelpMan createmultisig()
{
return RPCHelpMan{
"createmultisig",
"Creates a multi-signature address with n signature of m keys required.\n"
"Creates a multi-signature address with n signatures of m keys required.\n"
"It returns a json object with the address and redeemScript.\n",
{
{"nrequired", RPCArg::Type::NUM, RPCArg::Optional::NO, "The number of required signatures out of the n keys."},
{"nrequired", RPCArg::Type::NUM, RPCArg::Optional::NO, "The number of required signatures out of the m keys."},
{"keys", RPCArg::Type::ARR, RPCArg::Optional::NO, "The hex-encoded public keys.",
{
{"key", RPCArg::Type::STR_HEX, RPCArg::Optional::OMITTED, "The hex-encoded public key"},

View File

@ -302,7 +302,7 @@ RPCHelpMan importdescriptors()
return RPCHelpMan{
"importdescriptors",
"Import descriptors. This will trigger a rescan of the blockchain based on the earliest timestamp of all descriptors being imported. Requires a new wallet backup.\n"
"When importing descriptors with multipath key expressions, if the multipath specifier contains exactly two elements, the descriptor produced from the second elements will be imported as an internal descriptor.\n"
"When importing descriptors with multipath key expressions, if the multipath specifier contains exactly two elements, the descriptor produced from the second element will be imported as an internal descriptor.\n"
"\nNote: This call can take over an hour to complete if using an early timestamp; during that time, other rpc calls\n"
"may report that the imported keys, addresses or scripts exist but related transactions are still missing.\n"
"The rescan is significantly faster if block filters are available (using startup option \"-blockfilterindex=1\").\n",

View File

@ -221,8 +221,8 @@ RPCHelpMan encryptwallet()
return RPCHelpMan{
"encryptwallet",
"Encrypts the wallet with 'passphrase'. This is for first time encryption.\n"
"After this, any calls that interact with private keys such as sending or signing \n"
"will require the passphrase to be set prior the making these calls.\n"
"After this, any calls that interact with private keys such as sending or signing \n"
"will require the passphrase to be set prior to making these calls.\n"
"Use the walletpassphrase call for this, and then walletlock call.\n"
"If the wallet is already encrypted, use the walletpassphrasechange call.\n"
"** IMPORTANT **\n"