Browse Source

wip more debug info

stopat
Jonathan "Duke" Leto 5 years ago
parent
commit
d1bb6e8196
  1. 4
      src/main.cpp

4
src/main.cpp

@ -2217,8 +2217,10 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin
const CChainParams& chainparams = Params();
AssertLockHeld(cs_main);
if ( HUSH_STOPAT != 0 && pindex->nHeight > HUSH_STOPAT )
if ( HUSH_STOPAT != 0 && pindex->nHeight > HUSH_STOPAT ) {
printf("Stopping at block height %d\n", HUSH_STOPAT);
return(false);
}
bool fExpensiveChecks = true;
if (fCheckpointsEnabled) {

Loading…
Cancel
Save