Skip to content

Commit

Permalink
f'tweak starting height to avoid crashing on reindex
Browse files Browse the repository at this point in the history
  • Loading branch information
kallewoof committed Jan 28, 2020
1 parent 1fc7ab4 commit cdb0a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@ class SigNetParams : public CChainParams {
consensus.BIP34Height = 1;
consensus.BIP65Height = 1;
consensus.BIP66Height = 1;
consensus.CSVHeight = 0;
consensus.SegwitHeight = 0;
consensus.CSVHeight = 1;
consensus.SegwitHeight = 1;
consensus.nPowTargetTimespan = 14 * 24 * 60 * 60; // two weeks
consensus.nPowTargetSpacing = 10 * 60;
consensus.fPowAllowMinDifficultyBlocks = false;
Expand Down

0 comments on commit cdb0a15

Please sign in to comment.