From: freewil Date: Thu, 26 Apr 2012 16:48:33 +0000 (-0400) Subject: listsinceblock: rpc param blockid -> blockhash X-Git-Tag: v0.4.0-unstable~129^2~1^2~18^2~3^2~5 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=3eb5fdbf5f73535f6a027bbcdf07958610794749 listsinceblock: rpc param blockid -> blockhash This is more consistent with the rest of the labeling seen by the user when accessing the rpc commands. --- diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 4e65628..3e82cd3 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1280,8 +1280,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;