Skip to content

Commit 877fcc7

Browse files
author
deeponion
committed
updated with latest checkpoints, and upgrade to 1.8.5.1
1 parent 83bdb44 commit 877fcc7

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

src/checkpoints.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ namespace Checkpoints
5454
(1250000, uint256("0x000000000001ef93e11ef086b7df375f8312c2b504d63655f96c9240b142d43c"))
5555
(1300021, uint256("0x000000000000e4f01a75810a68958b831435d8d8778badda7cc108b0f1837180"))
5656
(1350006, uint256("0x00000000000283363cc3b6932640850e39c09b5e8989a1bc55cc5e074d737a61"))
57-
(1390072, uint256("0x000000000004cd4562361ac51ccd1887cf615ec4f142be6a551b92e2bd9c16ea"))
57+
(1400000, uint256("0x00000000000aa03f5bff2cc0dd3cdc7e7260d5b42eff14acc4cc2f3e4a7392ec"))
58+
(1434023, uint256("0x0000000000008b16bb9714c2b93d3e3d2e4bb72121ccab5fa9747dd580cc691e"))
5859
;
5960

6061
// TestNet has no checkpoints

src/clientversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define CLIENT_VERSION_MAJOR 1
1010
#define CLIENT_VERSION_MINOR 8
1111
#define CLIENT_VERSION_REVISION 5
12-
#define CLIENT_VERSION_BUILD 0
12+
#define CLIENT_VERSION_BUILD 1
1313

1414
// Converts the parameter X to a string after macro replacement on X has been performed.
1515
// Don't merge these into one macro!

src/kernel.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ static std::map<int, unsigned int> mapStakeModifierCheckpoints =
4747
(1250000, 0xa3689d70u)
4848
(1300021, 0x6fa62d97u)
4949
(1350006, 0x469c6019u)
50-
(1390072, 0xaf6e8a1du)
50+
(1400000, 0xc9bbc27eu)
51+
(1434023, 0x1b6aa26du)
5152
;
5253

5354
// Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)

src/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ int64_t nTransactionFee = MIN_TX_FEE_NEW;
8282
int64_t nReserveBalance = 0;
8383
int64_t nMinimumInputValue = 0;
8484

85-
static const int NUM_OF_POW_CHECKPOINT = 30;
85+
static const int NUM_OF_POW_CHECKPOINT = 32;
8686
static const int checkpointPoWHeight[NUM_OF_POW_CHECKPOINT][2] =
8787
{
8888
{ 9601, 4611},
@@ -115,6 +115,8 @@ static const int checkpointPoWHeight[NUM_OF_POW_CHECKPOINT][2] =
115115
{1250000, 243054},
116116
{1300021, 252612},
117117
{1350006, 261894},
118+
{1400000, 271297},
119+
{1434023, 277697},
118120
};
119121

120122
extern enum Checkpoints::CPMode CheckpointsMode;

0 commit comments

Comments
 (0)