aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2014-02-17 12:11:13 -0500
committerGavin Andresen <[email protected]>2014-02-17 12:11:13 -0500
commitb25d1c05095f51ba9bcfe5fc61f619fe5d95a866 (patch)
tree06ca2f8a9d954c6249d112107d3ac1b2c6d31557 /src/rpcwallet.cpp
parentMerge pull request #3690 from laanwj/2014_02_gettransaction_serialize_only_tx (diff)
parentDocument new `walletpassphrase` behavior in 0.9 (diff)
downloaddiscoin-b25d1c05095f51ba9bcfe5fc61f619fe5d95a866.tar.xz
discoin-b25d1c05095f51ba9bcfe5fc61f619fe5d95a866.zip
Merge pull request #3679 from laanwj/2014_02_walletpassphrase_behavior
Document new `walletpassphrase` behavior in 0.9
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 38c669a1f..3b0c84e49 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -1574,6 +1574,9 @@ Value walletpassphrase(const Array& params, bool fHelp)
"\nArguments:\n"
"1. \"passphrase\" (string, required) The wallet passphrase\n"
"2. timeout (numeric, required) The time to keep the decryption key in seconds.\n"
+ "\nNote:\n"
+ "Issuing the walletpassphrase command while the wallet is already unlocked will set a new unlock\n"
+ "time that overrides the old one.\n"
"\nExamples:\n"
"\nunlock the wallet for 60 seconds\n"
+ HelpExampleCli("walletpassphrase", "\"my pass phrase\" 60") +