aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Corallo <[email protected]>2017-12-13 12:18:33 -0500
committerMatt Corallo <[email protected]>2017-12-13 12:18:33 -0500
commitc79d73dc94684a43ce9ce98817aa4876db283066 (patch)
tree484e08f8000912a2dc70529590713812062a47f6 /src
parentMerge #11877: Improve createrawtransaction functional tests (diff)
downloaddiscoin-c79d73dc94684a43ce9ce98817aa4876db283066.tar.xz
discoin-c79d73dc94684a43ce9ce98817aa4876db283066.zip
Clarify getbalance meaning a tiny bit in response to questions.
Diffstat (limited to 'src')
-rw-r--r--src/wallet/rpcwallet.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 473acd836..4da56fbe8 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -771,6 +771,8 @@ UniValue getbalance(const JSONRPCRequest& request)
throw std::runtime_error(
"getbalance ( \"account\" minconf include_watchonly )\n"
"\nIf account is not specified, returns the server's total available balance.\n"
+ "The available balance is what the wallet considers currently spendable, and is\n"
+ "thus affected by options which limit spendability such as -spendzeroconfchange.\n"
"If account is specified (DEPRECATED), returns the balance in the account.\n"
"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"