@ -622,7 +622,7 @@ UniValue getreceivedbyaddress(const JSONRPCRequest& request)
@@ -622,7 +622,7 @@ UniValue getreceivedbyaddress(const JSONRPCRequest& request)
+ HelpExampleCli ( " getreceivedbyaddress " , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX \" " ) +
" \n The amount including unconfirmed transactions, zero confirmations \n "
+ HelpExampleCli ( " getreceivedbyaddress " , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX \" 0 " ) +
" \n The amount with at least 6 confirmation, very safe \n "
" \n The amount with at least 6 confirmations \n "
+ HelpExampleCli ( " getreceivedbyaddress " , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX \" 6 " ) +
" \n As a json rpc call \n "
+ HelpExampleRpc ( " getreceivedbyaddress " , " \" 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX \" , 6 " )
@ -682,7 +682,7 @@ UniValue getreceivedbyaccount(const JSONRPCRequest& request)
@@ -682,7 +682,7 @@ UniValue getreceivedbyaccount(const JSONRPCRequest& request)
+ HelpExampleCli ( " getreceivedbyaccount " , " \" \" " ) +
" \n Amount received at the tabby account including unconfirmed amounts with zero confirmations \n "
+ HelpExampleCli ( " getreceivedbyaccount " , " \" tabby \" 0 " ) +
" \n The amount with at least 6 confirmation, very safe \n "
" \n The amount with at least 6 confirmations \n "
+ HelpExampleCli ( " getreceivedbyaccount " , " \" tabby \" 6 " ) +
" \n As a json rpc call \n "
+ HelpExampleRpc ( " getreceivedbyaccount " , " \" tabby \" , 6 " )
@ -2103,7 +2103,7 @@ UniValue walletpassphrase(const JSONRPCRequest& request)
@@ -2103,7 +2103,7 @@ UniValue walletpassphrase(const JSONRPCRequest& request)
" Issuing the walletpassphrase command while the wallet is already unlocked will set a new unlock \n "
" time that overrides the old one. \n "
" \n Examples: \n "
" \n u nlock the wallet for 60 seconds\n "
" \n U nlock the wallet for 60 seconds\n "
+ HelpExampleCli ( " walletpassphrase " , " \" my pass phrase \" 60 " ) +
" \n Lock the wallet again (before 60 seconds) \n "
+ HelpExampleCli ( " walletlock " , " " ) +
@ -2258,11 +2258,11 @@ UniValue encryptwallet(const JSONRPCRequest& request)
@@ -2258,11 +2258,11 @@ UniValue encryptwallet(const JSONRPCRequest& request)
" \n Arguments: \n "
" 1. \" passphrase \" (string) The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long. \n "
" \n Examples: \n "
" \n Encrypt you wallet \n "
" \n Encrypt your wallet \n "
+ HelpExampleCli ( " encryptwallet " , " \" my pass phrase \" " ) +
" \n Now set the passphrase to use the wallet, such as for signing or sending bitcoin \n "
+ HelpExampleCli ( " walletpassphrase " , " \" my pass phrase \" " ) +
" \n Now we can s o something like sign \n "
" \n Now we can d o something like sign \n "
+ HelpExampleCli ( " signmessage " , " \" address \" \" test message \" " ) +
" \n Now lock the wallet again by removing the passphrase \n "
+ HelpExampleCli ( " walletlock " , " " ) +