diff options
author | Daniel Kraft <d@domob.eu> | 2014-08-03 18:12:19 +0200 |
---|---|---|
committer | Daniel Kraft <d@domob.eu> | 2014-08-03 18:12:19 +0200 |
commit | b33bd7a3be1cbcc8d255178307976b7762125b18 (patch) | |
tree | 7d1af753944e5813f0ef541efb0a28edf5a283e2 /src/main.h | |
parent | 6278bd57c662e29b07df9db50c47095c0bb44a82 (diff) |
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/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index 48ec86f6a8..a27020459a 100644 --- a/src/main.h +++ b/src/main.h @@ -1068,7 +1068,7 @@ public: CBlockIndex *FindFork(const CBlockLocator &locator) const; /** Find the last common block between this chain and a block index entry. */ - CBlockIndex *FindFork(CBlockIndex *pindex) const; + const CBlockIndex *FindFork(const CBlockIndex *pindex) const; }; /** The currently-connected chain of blocks. */ |