aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-01-29 13:41:34 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-01-29 13:43:47 +0100
commit3cf1f43694f82f0f3e5526c10be2ff379c2d9f76 (patch)
treef8bbc38c704b226aee298baa73e298c2651b54b4 /src/rpcwallet.cpp
parentaab8fc58c6e6dc6e0a104170bd2aa10dc1af5dea (diff)
downloadbitcoin-3cf1f43694f82f0f3e5526c10be2ff379c2d9f76.tar.xz
Mention `*` value for account in documentation for `getbalance` RPC
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 68f5fe525a..5c6c873762 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -589,13 +589,15 @@ Value getbalance(const Array& params, bool fHelp)
"Note that the account \"\" is not the same as leaving the parameter out.\n"
"The server total may be different to the balance in the default \"\" account.\n"
"\nArguments:\n"
- "1. \"account\" (string, optional) The selected account. It may be the default account using \"\".\n"
+ "1. \"account\" (string, optional) The selected account, or \"*\" for entire wallet. It may be the default account using \"\".\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"\nResult:\n"
"amount (numeric) The total amount in btc received for this account.\n"
"\nExamples:\n"
"\nThe total amount in the server across all accounts\n"
+ HelpExampleCli("getbalance", "") +
+ "\nThe total amount in the server across all accounts, with at least 5 confirmations\n"
+ + HelpExampleCli("getbalance", "\"*\" 6") +
"\nThe total amount in the default account with at least 1 confirmation\n"
+ HelpExampleCli("getbalance", "\"\"") +
"\nThe total amount in the account named tabby with at least 6 confirmations\n"