aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfreewil <sean@eternalrise.com>2012-04-26 12:48:33 -0400
committerLuke Dashjr <luke-jr+git@utopios.org>2012-04-27 10:47:31 -0400
commit3eb5fdbf5f73535f6a027bbcdf07958610794749 (patch)
tree2155fa0104b88efa717ac2d6604ba4086499911c /src
parentaff6456e8ab47260c1d9598ed00f08fce4848f27 (diff)
downloadbitcoin-3eb5fdbf5f73535f6a027bbcdf07958610794749.tar.xz
listsinceblock: rpc param blockid -> blockhash
This is more consistent with the rest of the labeling seen by the user when accessing the rpc commands.
Diffstat (limited to 'src')
-rw-r--r--src/bitcoinrpc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index 4e65628472..3e82cd3ab7 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;