Skip to content

mandatory: Testnet v13 mandatory #2800

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Set testnet v13 manadatory height at 2870000.
  • Loading branch information
jamescowens committed Apr 21, 2025
commit 3c29a708c18d290491935fefeabb7343e7bbc567
6 changes: 3 additions & 3 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,14 @@ class CTestNetParams : public CChainParams {
consensus.BlockV10Height = 629409;
consensus.BlockV11Height = 1301500;
consensus.BlockV12Height = 1871830;
consensus.BlockV13Height = std::numeric_limits<int>::max();
consensus.BlockV13Height = 2870000;
consensus.PollV3Height = 1944820;
consensus.ProjectV2Height = 1944820;
consensus.DefaultConstantBlockReward = 10 * COIN;
consensus.ConstantBlockRewardFloor = 0;
consensus.ConstantBlockRewardCeiling = 500 * COIN;
consensus.ProjectV4Height = std::numeric_limits<int>::max();
consensus.SuperblockV3Height = std::numeric_limits<int>::max();
consensus.ProjectV4Height = 2870000;
consensus.SuperblockV3Height = 2870000;
// Immediately post zero payment interval fees 40% for testnet, the same as mainnet
consensus.InitialMRCFeeFractionPostZeroInterval = Fraction(2, 5);
consensus.MRCZeroPaymentInterval = 10 * 60;
Expand Down
Loading