Skip to content

Commit c0af173

Browse files
committed
doc: default minconf for getbalance should be 0
1 parent 5c1ba3a commit c0af173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,9 +737,9 @@ static UniValue getbalance(const JSONRPCRequest& request)
737737
RPCResult::Type::STR_AMOUNT, "amount", "The total amount in " + CURRENCY_UNIT + " received for this wallet."
738738
},
739739
RPCExamples{
740-
"\nThe total amount in the wallet with 1 or more confirmations\n"
740+
"\nThe total amount in the wallet with 0 or more confirmations\n"
741741
+ HelpExampleCli("getbalance", "") +
742-
"\nThe total amount in the wallet at least 6 blocks confirmed\n"
742+
"\nThe total amount in the wallet with at least 6 confirmations\n"
743743
+ HelpExampleCli("getbalance", "\"*\" 6") +
744744
"\nAs a JSON-RPC call\n"
745745
+ HelpExampleRpc("getbalance", "\"*\", 6")

0 commit comments

Comments
 (0)