diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-05 10:29:11 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-05 10:29:26 +0100 |
| commit | 48d7e0d5e46382da0cb2491330a90a61ad65bc06 (patch) | |
| tree | 7e90cb5fec429c1b4e31babb2bb0daee02cb5e00 /src | |
| parent | Merge #9475: Let autoconf detect presence of EVP_MD_CTX_new (diff) | |
| parent | Mark the minconf parameter to move as ignored (diff) | |
| download | discoin-48d7e0d5e46382da0cb2491330a90a61ad65bc06.tar.xz discoin-48d7e0d5e46382da0cb2491330a90a61ad65bc06.zip | |
Merge #9474: Mark the minconf parameter to move as ignored
ce370c1 Mark the minconf parameter to move as ignored (Pieter Wuille)
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 11d69ac19..936140cf4 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -757,7 +757,7 @@ UniValue movecmd(const JSONRPCRequest& request) "1. \"fromaccount\" (string, required) The name of the account to move funds from. May be the default account using \"\".\n" "2. \"toaccount\" (string, required) The name of the account to move funds to. May be the default account using \"\".\n" "3. amount (numeric) Quantity of " + CURRENCY_UNIT + " to move between accounts.\n" - "4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n" + "4. (dummy) (numeric, optional) Ignored. Remains for backward compatibility.\n" "5. \"comment\" (string, optional) An optional comment, stored in the wallet only.\n" "\nResult:\n" "true|false (boolean) true if successful.\n" |