Skip to content

Commit 0514fb3

Browse files
committed
Merge pull request #3606
6943cb9 small changes to rpc command help message strings (Philip Kaufmann)
2 parents b7f5915 + 6943cb9 commit 0514fb3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/rpcblockchain.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ Value verifychain(const Array& params, bool fHelp)
410410
"verifychain ( checklevel numblocks )\n"
411411
"\nVerifies blockchain database.\n"
412412
"\nArguments:\n"
413-
"1. checklevel (numeric, optional, default=3) The level\n"
414-
"2. numblocks (numeric, optional, 288) The number of blocks\n"
413+
"1. checklevel (numeric, optional, 0-4, default=3) How thorough the block verification is.\n"
414+
"2. numblocks (numeric, optional, default=288, 0=all) The number of blocks to check.\n"
415415
"\nResult:\n"
416416
"true|false (boolean) Verified or not\n"
417417
"\nExamples:\n"

src/rpcnet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Value ping(const Array& params, bool fHelp)
4747
"ping\n"
4848
"\nRequests that a ping be sent to all other nodes, to measure ping time.\n"
4949
"Results provided in getpeerinfo, pingtime and pingwait fields are decimal seconds.\n"
50-
"Ping command is handled in queue with all other commands, so it measures processing backlog, not just network ping."
50+
"Ping command is handled in queue with all other commands, so it measures processing backlog, not just network ping.\n"
5151
"\nExamples:\n"
5252
+ HelpExampleCli("ping", "")
5353
+ HelpExampleRpc("ping", "")

src/rpcwallet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1850,9 +1850,9 @@ Value settxfee(const Array& params, bool fHelp)
18501850
if (fHelp || params.size() < 1 || params.size() > 1)
18511851
throw runtime_error(
18521852
"settxfee amount\n"
1853-
"\nSet the transaction fee per KB.\n"
1853+
"\nSet the transaction fee per kB.\n"
18541854
"\nArguments:\n"
1855-
"1. amount (numeric, required) The transaction fee in BTC/KB rounded to the nearest 0.00000001\n"
1855+
"1. amount (numeric, required) The transaction fee in BTC/kB rounded to the nearest 0.00000001\n"
18561856
"\nResult\n"
18571857
"true|false (boolean) Returns true if successful\n"
18581858
"\nExamples:\n"

0 commit comments

Comments
 (0)