Skip to content

Commit

Permalink
Curecoin 2.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CygnusXI committed Dec 22, 2018
1 parent 9ed4d6e commit 535abfc
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
2 changes: 2 additions & 0 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ static MapCheckpoints mapCheckpoints =
( 180646, uint256("9cbc41346470862c61a2acba7b4773128339fe9ffd6c1da6e566657a4eb6f2c5"))
( 208090, uint256("7c0b71191e9419f0ac6a0dad5a4fedb056f190dd0c3aa67628e51c8bf2e7d943"))
( 250000, uint256("9466a840d8f31e7100a6669db27e965f0b5d8d27a3a2e4708f11f424d9224c46"))
( 257310, uint256("bc7a3cecea050289c2b8eb67a7ba64fd0b6926728d3d8339a7026224ba64fbf1"))
( 257325, uint256("0601c6ba233354079faa15044c745f9bf219cfb1c236fac8676e8c189a95b705"))
;


Expand Down
6 changes: 3 additions & 3 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
//

// These need to be macros, as version.cpp's and curecoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 9
#define CLIENT_VERSION_REVISION 6
#define CLIENT_VERSION_MAJOR 2
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 1


Expand Down
4 changes: 3 additions & 1 deletion src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ static std::map<int, unsigned int> mapStakeModifierCheckpoints =
( 148000, 0x111af91cu )
( 180646, 0xb85b7dd1u )
( 208090, 0x5bcb7d1bu )
( 250000, 0x1c511315u )
( 250000, 0x1c511315u )
( 257310, 0x2b0c04b1u )
( 257325, 0x243b5a4bu )
;

// Get time weight
Expand Down
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static const int64 MAX_MINT_PROOF_OF_WORK = 13 * COIN; //Lucky number 13 Coins p
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.01 * MAX_MINT_PROOF_OF_WORK; //1% annual interest reward the folders and holders
static const int64 MIN_TXOUT_AMOUNT = MIN_TX_FEE;
static const unsigned int MAX_TX_COMMENT_LEN = 268; // curecoin: 256 bytes + 12 little extra
static const unsigned int HF_BLOCK = 300000; // testing hotwire 220000; // hardfork's block height
static const unsigned int HF_BLOCK = 257322; // testing hotwire 220000; // hardfork's block height

inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
// Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
Expand Down
10 changes: 5 additions & 5 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ extern const std::string CLIENT_DATE;
// network protocol versioning
//

static const int PROTOCOL_VERSION = 60008;
static const int PROTOCOL_VERSION = 60009;

// earlier versions not supported as of Feb 2012, and are disconnected
static const int MIN_PROTO_VERSION = 209;
static const int MIN_PROTO_VERSION = 60009;

// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
Expand All @@ -44,9 +44,9 @@ static const int BIP0031_VERSION = 60000;
// "mempool" command, enhanced "getdata" behavior starts with this version:
static const int MEMPOOL_GD_VERSION = 60002;

#define DISPLAY_VERSION_MAJOR 1
#define DISPLAY_VERSION_MINOR 9
#define DISPLAY_VERSION_REVISION 6
#define DISPLAY_VERSION_MAJOR 2
#define DISPLAY_VERSION_MINOR 0
#define DISPLAY_VERSION_REVISION 0
#define DISPLAY_VERSION_BUILD 1

#endif

0 comments on commit 535abfc

Please sign in to comment.