diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-08-15 20:34:00 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-08-15 20:34:00 -0700 |
commit | 317f57ec87da566ee2ae648853a9105a4136efef (patch) | |
tree | 6a43ac66b8c779f6d01e2329f05b030f46607b2e | |
parent | 31b28082fe984990a251aa1a05cb4c4457edd310 (diff) | |
parent | 9afe5a2c32936ca97d66403bece02d663ec38264 (diff) |
Merge pull request #2903 from Michagogo/listsinceblock-help
Clarified the listsinceblock help test
-rw-r--r-- | src/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index dca640323e..83aa9471f7 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -1144,7 +1144,7 @@ Value listsinceblock(const Array& params, bool fHelp) if (fHelp) throw runtime_error( "listsinceblock [blockhash] [target-confirmations]\n" - "Get all transactions in blocks since block [blockhash], or all transactions if omitted"); + "Get all wallet transactions in blocks since block [blockhash], or all wallet transactions if omitted"); CBlockIndex *pindex = NULL; int target_confirms = 1; |