aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2017-02-24 10:21:59 +0100
committerWladimir J. van der Laan <[email protected]>2017-02-24 10:22:04 +0100
commit00285cece814e28f9c9807fe31f3fbc5cadb6044 (patch)
tree8394bfb0330faa33d16230af259ed448fd454fc5 /src
parentMerge #9831: build: force a c++ standard to be specified (diff)
parentUpdate sendfrom RPC help to correct coin selection misconception (diff)
downloaddiscoin-00285cece814e28f9c9807fe31f3fbc5cadb6044.tar.xz
discoin-00285cece814e28f9c9807fe31f3fbc5cadb6044.zip
Merge #9840: Update sendfrom RPC help to correct coin selection misconception
f81f0d0 Update sendfrom RPC help to correct coin selection misconception (Russell Yanofsky)
Diffstat (limited to 'src')
-rw-r--r--src/wallet/rpcwallet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 01005bf33..6b9e49038 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -819,6 +819,9 @@ UniValue sendfrom(const JSONRPCRequest& request)
+ HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n"
+ " Specifying an account does not influence coin selection, but it does associate the newly created\n"
+ " transaction with the account, so the account's balance computation and transaction history can reflect\n"
+ " the spend.\n"
"2. \"toaddress\" (string, required) The bitcoin address to send funds to.\n"
"3. amount (numeric or string, required) The amount in " + CURRENCY_UNIT + " (transaction fee is added on top).\n"
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"