diff options
| author | freewil <[email protected]> | 2012-04-26 12:48:33 -0400 |
|---|---|---|
| committer | freewil <[email protected]> | 2012-04-26 12:48:33 -0400 |
| commit | fdb204abb1c6cc3637b3cc9cf7c0add483283282 (patch) | |
| tree | 8c7ca0c455779e7f07e346e6534816a977d214aa /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1140 from jgarzik/sign-compare (diff) | |
| download | discoin-fdb204abb1c6cc3637b3cc9cf7c0add483283282.tar.xz discoin-fdb204abb1c6cc3637b3cc9cf7c0add483283282.zip | |
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/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 226292391..2e991aab3 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -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; |