Skip to content

Commit

Permalink
updated with latest checkpoints, and upgrade to 1.8.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deeponion committed Aug 30, 2019
1 parent 83bdb44 commit 877fcc7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ namespace Checkpoints
(1250000, uint256("0x000000000001ef93e11ef086b7df375f8312c2b504d63655f96c9240b142d43c"))
(1300021, uint256("0x000000000000e4f01a75810a68958b831435d8d8778badda7cc108b0f1837180"))
(1350006, uint256("0x00000000000283363cc3b6932640850e39c09b5e8989a1bc55cc5e074d737a61"))
(1390072, uint256("0x000000000004cd4562361ac51ccd1887cf615ec4f142be6a551b92e2bd9c16ea"))
(1400000, uint256("0x00000000000aa03f5bff2cc0dd3cdc7e7260d5b42eff14acc4cc2f3e4a7392ec"))
(1434023, uint256("0x0000000000008b16bb9714c2b93d3e3d2e4bb72121ccab5fa9747dd580cc691e"))
;

// TestNet has no checkpoints
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 8
#define CLIENT_VERSION_REVISION 5
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_BUILD 1

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down
3 changes: 2 additions & 1 deletion src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ static std::map<int, unsigned int> mapStakeModifierCheckpoints =
(1250000, 0xa3689d70u)
(1300021, 0x6fa62d97u)
(1350006, 0x469c6019u)
(1390072, 0xaf6e8a1du)
(1400000, 0xc9bbc27eu)
(1434023, 0x1b6aa26du)
;

// Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)
Expand Down
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ int64_t nTransactionFee = MIN_TX_FEE_NEW;
int64_t nReserveBalance = 0;
int64_t nMinimumInputValue = 0;

static const int NUM_OF_POW_CHECKPOINT = 30;
static const int NUM_OF_POW_CHECKPOINT = 32;
static const int checkpointPoWHeight[NUM_OF_POW_CHECKPOINT][2] =
{
{ 9601, 4611},
Expand Down Expand Up @@ -115,6 +115,8 @@ static const int checkpointPoWHeight[NUM_OF_POW_CHECKPOINT][2] =
{1250000, 243054},
{1300021, 252612},
{1350006, 261894},
{1400000, 271297},
{1434023, 277697},
};

extern enum Checkpoints::CPMode CheckpointsMode;
Expand Down

0 comments on commit 877fcc7

Please sign in to comment.