diff options
| author | Gregory Sanders <[email protected]> | 2017-07-12 14:40:02 -0400 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2017-07-12 14:40:02 -0400 |
| commit | 228987d84c352de691315474649475f3fbc5de28 (patch) | |
| tree | d0b9991ebd56a0681310c5db0ee2b537990f9a88 /src | |
| parent | Merge #10651: Verify binaries from bitcoincore.org and bitcoin.org (diff) | |
| download | discoin-228987d84c352de691315474649475f3fbc5de28.tar.xz discoin-228987d84c352de691315474649475f3fbc5de28.zip | |
getbalance example covers at least 6 confirms
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 5f72e3b6f..873542a96 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -740,9 +740,9 @@ UniValue getbalance(const JSONRPCRequest& request) "\nResult:\n" "amount (numeric) The total amount in " + CURRENCY_UNIT + " received for this account.\n" "\nExamples:\n" - "\nThe total amount in the wallet\n" + "\nThe total amount in the wallet with 1 or more confirmations\n" + HelpExampleCli("getbalance", "") + - "\nThe total amount in the wallet at least 5 blocks confirmed\n" + "\nThe total amount in the wallet at least 6 blocks confirmed\n" + HelpExampleCli("getbalance", "\"*\" 6") + "\nAs a json rpc call\n" + HelpExampleRpc("getbalance", "\"*\", 6") |