diff options
| author | Daniel Kraft <[email protected]> | 2014-08-03 18:12:19 +0200 |
|---|---|---|
| committer | Daniel Kraft <[email protected]> | 2014-08-03 18:12:19 +0200 |
| commit | b33bd7a3be1cbcc8d255178307976b7762125b18 (patch) | |
| tree | 7d1af753944e5813f0ef541efb0a28edf5a283e2 /src/rpcserver.cpp | |
| parent | Merge pull request #4602 (diff) | |
| download | discoin-b33bd7a3be1cbcc8d255178307976b7762125b18.tar.xz discoin-b33bd7a3be1cbcc8d255178307976b7762125b18.zip | |
Implement "getchaintips" RPC command to monitor blockchain forks.
Port over https://github.com/chronokings/huntercoin/pull/19 from
Huntercoin: This implements a new RPC command "getchaintips" that can be
used to find all currently active chain heads. This is similar to the
-printblocktree startup option, but it can be used without restarting
just via the RPC interface on a running daemon.
Diffstat (limited to 'src/rpcserver.cpp')
| -rw-r--r-- | src/rpcserver.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 5deb6a4e0..716a7fba6 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -235,6 +235,7 @@ static const CRPCCommand vRPCCommands[] = { "getblockcount", &getblockcount, true, false, false }, { "getblock", &getblock, true, false, false }, { "getblockhash", &getblockhash, true, false, false }, + { "getchaintips", &getchaintips, true, false, false }, { "getdifficulty", &getdifficulty, true, false, false }, { "getrawmempool", &getrawmempool, true, false, false }, { "gettxout", &gettxout, true, false, false }, |