diff options
author | instagibbs <gsanders87@gmail.com> | 2016-05-06 12:53:23 -0400 |
---|---|---|
committer | instagibbs <gsanders87@gmail.com> | 2016-05-06 12:53:23 -0400 |
commit | addb9d2a092b4fd0384d4ff82e9607e5411eab97 (patch) | |
tree | 97082670482b54c5c5bad2c85e952b787cf5c2f3 /src/main.h | |
parent | fbd84788e676c9cbd126f6236ec46bb2f342bd00 (diff) |
Remove state arg from ReconsiderBlock
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 bdf7f5a687..e48cebecb3 100644 --- a/src/main.h +++ b/src/main.h @@ -464,7 +464,7 @@ CBlockIndex* FindForkInGlobalIndex(const CChain& chain, const CBlockLocator& loc bool InvalidateBlock(CValidationState& state, const CChainParams& chainparams, CBlockIndex *pindex); /** Remove invalidity status from a block and its descendants. */ -bool ReconsiderBlock(CValidationState& state, CBlockIndex *pindex); +bool ReconsiderBlock(CBlockIndex *pindex); /** The currently-connected chain of blocks (protected by cs_main). */ extern CChain chainActive; |