Remove state arg from ReconsiderBlock

This commit is contained in:
instagibbs
2016-05-06 12:53:23 -04:00
committed by lateminer
parent 4a2d793f2a
commit 46038d59ea
3 changed files with 5 additions and 7 deletions

View File

@@ -482,7 +482,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;