Skip to content

Commit

Permalink
docs: updated release notes and code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
knst committed Oct 17, 2024
1 parent d695b8e commit 8073334
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/release-notes-6189.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Tests

- For the `regtest` network the activation heights of several softforks were
set to block height 1. They can be changed by the runtime setting
`-testactivationheight=name@height`. (dash#6214)
`-testactivationheight=name@height`. Command line arguments -dip8params, -bip147height are removed in favour of -testactivationheight. (dash#6214)
3 changes: 2 additions & 1 deletion src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,8 @@ class CRegTestParams : public CChainParams {
consensus.BIP147Height = 0; // Always active unless overridden
consensus.CSVHeight = 1; // Always active unless overridden
consensus.DIP0001Height = 1; // Always active unless overridden
consensus.DIP0003Height = 432;
consensus.DIP0003Height = 432; // Always active for DashTestFramework in functional tests (see dip3params)
// For unit tests and for BitcoinTestFramework is disabled due to missing quorum commitment for blocks created by helpers such as create_blocks
consensus.DIP0003EnforcementHeight = 500;
consensus.DIP0003EnforcementHash = uint256();
consensus.DIP0008Height = 1; // Always active unless overridden
Expand Down

0 comments on commit 8073334

Please sign in to comment.