Skip to content

Commit

Permalink
regtest: Set CSV to be always active
Browse files Browse the repository at this point in the history
  • Loading branch information
lateminer committed Oct 28, 2023
1 parent f483a77 commit a9df6ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kernel/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,9 @@ class CRegTestParams : public CChainParams
consensus.signet_blocks = false;
consensus.signet_challenge.clear();
consensus.nMaxReorganizationDepth = 50;
consensus.CSVHeight = std::numeric_limits<int>::max();
consensus.CSVHeight = 1;
consensus.SegwitHeight = std::numeric_limits<int>::max();
consensus.MinBIP9WarningHeight = std::numeric_limits<int>::max();
consensus.MinBIP9WarningHeight = 0;
consensus.powLimit = uint256S("7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
consensus.posLimit = uint256S("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
consensus.posLimitV2 = uint256S("000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffff");
Expand Down

0 comments on commit a9df6ee

Please sign in to comment.