Skip to content

Commit

Permalink
Checkpoint Seed Coins
Browse files Browse the repository at this point in the history
  • Loading branch information
GreedDev committed Aug 30, 2015
1 parent 5bde09c commit 57de8bc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/checkpoints.cpp
Expand Up @@ -28,6 +28,7 @@ namespace Checkpoints
static MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
( 0, hashGenesisBlock ) //Remember to do POS checkpoints in kernel.cpp too!
( 3, uint256("0x00000000d2f2ed215b469c4f38da539e402889b50905e6bbe68508f89076fc63"))
;

// TestNet has no checkpoints
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#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
1 change: 1 addition & 0 deletions src/kernel.cpp
Expand Up @@ -16,6 +16,7 @@ typedef std::map<int, unsigned int> MapModifierCheckpoints;
static std::map<int, unsigned int> mapStakeModifierCheckpoints =
boost::assign::map_list_of
(0, 0xfd11f4e7) //Find with "getblock [genesis/other hash]"
(3, 0x88aad4b7)

;

Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Expand Up @@ -30,13 +30,13 @@ static const int DATABASE_VERSION = 70509;
// network protocol versioning
//

static const int PROTOCOL_VERSION = 60100;
static const int PROTOCOL_VERSION = 61001;

// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;

// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 60100;
static const int MIN_PEER_PROTO_VERSION = 61001;

// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
Expand Down

0 comments on commit 57de8bc

Please sign in to comment.