diff options
| author | Jeff Garzik <[email protected]> | 2013-07-03 11:02:29 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-07-03 11:02:29 -0400 |
| commit | 091aa8dae9b7345a1cd81e2733766463dfbf4b82 (patch) | |
| tree | 1f8c22922846c5e6b1a77a1312253b5467c1d357 /src/bitcoinrpc.cpp | |
| parent | Merge pull request #2801 from gavinandresen/urifix (diff) | |
| download | discoin-091aa8dae9b7345a1cd81e2733766463dfbf4b82.tar.xz discoin-091aa8dae9b7345a1cd81e2733766463dfbf4b82.zip | |
RPC: add getbestblockhash, to return tip of best chain
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 590812620..11fac4221 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -195,6 +195,7 @@ static const CRPCCommand vRPCCommands[] = { "help", &help, true, true }, { "stop", &stop, true, true }, { "getblockcount", &getblockcount, true, false }, + { "getbestblockhash", &getbestblockhash, true, false }, { "getconnectioncount", &getconnectioncount, true, false }, { "getpeerinfo", &getpeerinfo, true, false }, { "addnode", &addnode, true, true }, |