diff options
author | Micha <michagogo@server.fake> | 2013-08-16 00:15:39 +0300 |
---|---|---|
committer | Micha <michagogo@server.fake> | 2013-08-16 00:15:39 +0300 |
commit | 9afe5a2c32936ca97d66403bece02d663ec38264 (patch) | |
tree | f84c81e07f79b9b98ed4a3b7d08a6410326babcc /src/rpcwallet.cpp | |
parent | 4323bfeafda4a5e0101710d94b518d41819a2325 (diff) |
Clarified the listsinceblock help test
Specifically, the fact that the command
relates to wallet transactions.
Diffstat (limited to 'src/rpcwallet.cpp')
-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; |