From 71d360fdbb18aacf9c49179e0be882f0b9fac289 Mon Sep 17 00:00:00 2001 From: Spark Date: Sat, 18 Oct 2014 17:11:11 +1300 Subject: [PATCH] Checkpoint Changes Checkpoint Changes --- src/kernel.cpp | 4 ++-- src/main.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kernel.cpp b/src/kernel.cpp index bf4d783..e654955 100644 --- a/src/kernel.cpp +++ b/src/kernel.cpp @@ -17,13 +17,13 @@ typedef std::map MapModifierCheckpoints; // Hard checkpoints of stake modifiers to ensure they are deterministic static std::map mapStakeModifierCheckpoints = boost::assign::map_list_of - ( 0, 0xbfa1d8e4fd11f4e7 ) + ( 0, 0xfd11f4e7 ) ; // Hard checkpoints of stake modifiers to ensure they are deterministic (testNet) static std::map mapStakeModifierCheckpointsTestNet = boost::assign::map_list_of - ( 0, 0xbfa1d8e4fd11f4e7 ) + ( 0, 0xfd11f4e7 ) ; // Get time weight diff --git a/src/main.cpp b/src/main.cpp index 38817e8..a8069cc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1116,7 +1116,7 @@ static unsigned int GetNextTargetRequiredV2(const CBlockIndex* pindexLast, bool unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfStake) { - bool IS_POW = (pindexLast->nHeight < 10001) || (pindexLast->nHeight > 50000 && pindexLast->nHeight < 60001); + bool IS_POW = (pindexLast->nHeight < 14400); if (IS_POW) { return GetNextTargetRequiredV1(pindexLast, fProofOfStake);