1
0
mirror of https://github.com/GOSTSec/gostcoin synced 2025-02-06 11:54:26 +00:00

change dificulty protocol levels

This commit is contained in:
orignal 2017-05-01 10:33:13 -04:00
parent e60e1a999c
commit 1bf52ef33a
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 8
#define CLIENT_VERSION_REVISION 5
#define CLIENT_VERSION_BUILD 7
#define CLIENT_VERSION_BUILD 8
// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true

View File

@ -1090,11 +1090,11 @@ static const int64 nTargetSpacing = 205;//3.42 * 60; // Gostcoin: 3.42 minutes
static const int64 nInterval = nTargetTimespan / nTargetSpacing;
static const int nDifficultySwitchHeight = 15420;
static const int nDifficultySwitchHeight2 = 77777;
static const int nDifficultySwitchHeight2 = 21570;
// Protocol 3
static const int nDifficultyProtocol3 = 87777;
static const int nDifficultyProtocol3 = 33333;
unsigned int static KimotoGravityWell(const CBlockIndex* pindexLast, const CBlockHeader *pblock, uint64 TargetBlocksSpacingSeconds, uint64 PastBlocksMin, uint64 PastBlocksMax) {