listsinceblock: rpc param blockid -> blockhash
authorfreewil <sean@eternalrise.com>
Thu, 26 Apr 2012 16:48:33 +0000 (12:48 -0400)
committerfreewil <sean@eternalrise.com>
Thu, 26 Apr 2012 16:48:33 +0000 (12:48 -0400)
This is more consistent with the rest of the labeling seen
by the user when accessing the rpc commands.

src/bitcoinrpc.cpp

index 2262923..2e991aa 100644 (file)
@@ -1403,8 +1403,8 @@ Value listsinceblock(const Array& params, bool fHelp)
 {
     if (fHelp)
         throw runtime_error(
-            "listsinceblock [blockid] [target-confirmations]\n"
-            "Get all transactions in blocks since block [blockid], or all transactions if omitted");
+            "listsinceblock [blockhash] [target-confirmations]\n"
+            "Get all transactions in blocks since block [blockhash], or all transactions if omitted");
 
     CBlockIndex *pindex = NULL;
     int target_confirms = 1;