From 9afe5a2c32936ca97d66403bece02d663ec38264 Mon Sep 17 00:00:00 2001 From: Micha Date: Fri, 16 Aug 2013 00:15:39 +0300 Subject: [PATCH] Clarified the listsinceblock help test Specifically, the fact that the command relates to wallet transactions. --- src/rpcwallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index dca640323..83aa9471f 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;