Skip to content

Commit a5ecaf1

Browse files
committed
Fix misspellings and remove safety verbiage
1 parent 9edda0c commit a5ecaf1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ UniValue getreceivedbyaddress(const JSONRPCRequest& request)
587587
+ HelpExampleCli("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\"") +
588588
"\nThe amount including unconfirmed transactions, zero confirmations\n"
589589
+ HelpExampleCli("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" 0") +
590-
"\nThe amount with at least 6 confirmation, very safe\n"
590+
"\nThe amount with at least 6 confirmations\n"
591591
+ HelpExampleCli("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" 6") +
592592
"\nAs a json rpc call\n"
593593
+ HelpExampleRpc("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\", 6")
@@ -647,7 +647,7 @@ UniValue getreceivedbyaccount(const JSONRPCRequest& request)
647647
+ HelpExampleCli("getreceivedbyaccount", "\"\"") +
648648
"\nAmount received at the tabby account including unconfirmed amounts with zero confirmations\n"
649649
+ HelpExampleCli("getreceivedbyaccount", "\"tabby\" 0") +
650-
"\nThe amount with at least 6 confirmation, very safe\n"
650+
"\nThe amount with at least 6 confirmations\n"
651651
+ HelpExampleCli("getreceivedbyaccount", "\"tabby\" 6") +
652652
"\nAs a json rpc call\n"
653653
+ HelpExampleRpc("getreceivedbyaccount", "\"tabby\", 6")
@@ -719,7 +719,7 @@ UniValue getbalance(const JSONRPCRequest& request)
719719
"\nExamples:\n"
720720
"\nThe total amount in the wallet\n"
721721
+ HelpExampleCli("getbalance", "") +
722-
"\nThe total amount in the wallet at least 5 blocks confirmed\n"
722+
"\nThe total amount in the wallet at least 6 blocks confirmed\n"
723723
+ HelpExampleCli("getbalance", "\"*\" 6") +
724724
"\nAs a json rpc call\n"
725725
+ HelpExampleRpc("getbalance", "\"*\", 6")
@@ -2008,7 +2008,7 @@ UniValue walletpassphrase(const JSONRPCRequest& request)
20082008
"Issuing the walletpassphrase command while the wallet is already unlocked will set a new unlock\n"
20092009
"time that overrides the old one.\n"
20102010
"\nExamples:\n"
2011-
"\nunlock the wallet for 60 seconds\n"
2011+
"\nUnlock the wallet for 60 seconds\n"
20122012
+ HelpExampleCli("walletpassphrase", "\"my pass phrase\" 60") +
20132013
"\nLock the wallet again (before 60 seconds)\n"
20142014
+ HelpExampleCli("walletlock", "") +
@@ -2163,11 +2163,11 @@ UniValue encryptwallet(const JSONRPCRequest& request)
21632163
"\nArguments:\n"
21642164
"1. \"passphrase\" (string) The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long.\n"
21652165
"\nExamples:\n"
2166-
"\nEncrypt you wallet\n"
2166+
"\nEncrypt your wallet\n"
21672167
+ HelpExampleCli("encryptwallet", "\"my pass phrase\"") +
21682168
"\nNow set the passphrase to use the wallet, such as for signing or sending bitcoin\n"
21692169
+ HelpExampleCli("walletpassphrase", "\"my pass phrase\"") +
2170-
"\nNow we can so something like sign\n"
2170+
"\nNow we can do something like sign\n"
21712171
+ HelpExampleCli("signmessage", "\"address\" \"test message\"") +
21722172
"\nNow lock the wallet again by removing the passphrase\n"
21732173
+ HelpExampleCli("walletlock", "") +

0 commit comments

Comments
 (0)