@@ -587,7 +587,7 @@ UniValue getreceivedbyaddress(const JSONRPCRequest& request)
587
587
+ HelpExampleCli (" getreceivedbyaddress" , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" " ) +
588
588
" \n The amount including unconfirmed transactions, zero confirmations\n "
589
589
+ HelpExampleCli (" getreceivedbyaddress" , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" 0" ) +
590
- " \n The amount with at least 6 confirmation, very safe \n "
590
+ " \n The amount with at least 6 confirmations \n "
591
591
+ HelpExampleCli (" getreceivedbyaddress" , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" 6" ) +
592
592
" \n As a json rpc call\n "
593
593
+ HelpExampleRpc (" getreceivedbyaddress" , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" , 6" )
@@ -647,7 +647,7 @@ UniValue getreceivedbyaccount(const JSONRPCRequest& request)
647
647
+ HelpExampleCli (" getreceivedbyaccount" , " \"\" " ) +
648
648
" \n Amount received at the tabby account including unconfirmed amounts with zero confirmations\n "
649
649
+ HelpExampleCli (" getreceivedbyaccount" , " \" tabby\" 0" ) +
650
- " \n The amount with at least 6 confirmation, very safe \n "
650
+ " \n The amount with at least 6 confirmations \n "
651
651
+ HelpExampleCli (" getreceivedbyaccount" , " \" tabby\" 6" ) +
652
652
" \n As a json rpc call\n "
653
653
+ HelpExampleRpc (" getreceivedbyaccount" , " \" tabby\" , 6" )
@@ -719,7 +719,7 @@ UniValue getbalance(const JSONRPCRequest& request)
719
719
" \n Examples:\n "
720
720
" \n The total amount in the wallet\n "
721
721
+ HelpExampleCli (" getbalance" , " " ) +
722
- " \n The total amount in the wallet at least 5 blocks confirmed\n "
722
+ " \n The total amount in the wallet at least 6 blocks confirmed\n "
723
723
+ HelpExampleCli (" getbalance" , " \" *\" 6" ) +
724
724
" \n As a json rpc call\n "
725
725
+ HelpExampleRpc (" getbalance" , " \" *\" , 6" )
@@ -2008,7 +2008,7 @@ UniValue walletpassphrase(const JSONRPCRequest& request)
2008
2008
" Issuing the walletpassphrase command while the wallet is already unlocked will set a new unlock\n "
2009
2009
" time that overrides the old one.\n "
2010
2010
" \n Examples:\n "
2011
- " \n unlock the wallet for 60 seconds\n "
2011
+ " \n Unlock the wallet for 60 seconds\n "
2012
2012
+ HelpExampleCli (" walletpassphrase" , " \" my pass phrase\" 60" ) +
2013
2013
" \n Lock the wallet again (before 60 seconds)\n "
2014
2014
+ HelpExampleCli (" walletlock" , " " ) +
@@ -2163,11 +2163,11 @@ UniValue encryptwallet(const JSONRPCRequest& request)
2163
2163
" \n Arguments:\n "
2164
2164
" 1. \" passphrase\" (string) The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long.\n "
2165
2165
" \n Examples:\n "
2166
- " \n Encrypt you wallet\n "
2166
+ " \n Encrypt your wallet\n "
2167
2167
+ HelpExampleCli (" encryptwallet" , " \" my pass phrase\" " ) +
2168
2168
" \n Now set the passphrase to use the wallet, such as for signing or sending bitcoin\n "
2169
2169
+ HelpExampleCli (" walletpassphrase" , " \" my pass phrase\" " ) +
2170
- " \n Now we can so something like sign\n "
2170
+ " \n Now we can do something like sign\n "
2171
2171
+ HelpExampleCli (" signmessage" , " \" address\" \" test message\" " ) +
2172
2172
" \n Now lock the wallet again by removing the passphrase\n "
2173
2173
+ HelpExampleCli (" walletlock" , " " ) +
0 commit comments