Skip to content

Commit

Permalink
Lock in block 6048
Browse files Browse the repository at this point in the history
  • Loading branch information
coblee committed Oct 13, 2011
1 parent 745b6c8 commit a02d6ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,8 @@ bool CBlock::AcceptBlock()
if ((nHeight == 1 && hash != uint256("0x80ca095ed10b02e53d769eb6eaf92cd04e9e0759e5be4a8477b42911ba49c78f")) ||
(nHeight == 2 && hash != uint256("0x13957807cdd1d02f993909fa59510e318763f99a506c4c426e3b254af09f40d7")) ||
(nHeight == 1500 && hash != uint256("0x841a2965955dd288cfa707a755d05a54e45f8bd476835ec9af4402a2b59a2967")) ||
(nHeight == 4032 && hash != uint256("0x9ce90e427198fc0ef05e5905ce3503725b80e26afd35a987965fd7e3d9cf0846")))
(nHeight == 4032 && hash != uint256("0x9ce90e427198fc0ef05e5905ce3503725b80e26afd35a987965fd7e3d9cf0846")) ||
(nHeight == 6048 && hash != uint256("0x3dd6e620060cf9c21aa4702413147329da0d1d6479dcca71076f5ba8d5fe00be")))
return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));

printf("Got new block at height %d: %s\n", nHeight, hash.ToString().c_str());
Expand Down
2 changes: 1 addition & 1 deletion src/serialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class CDataStream;
class CAutoFile;
static const unsigned int MAX_SIZE = 0x02000000;

static const int VERSION = 40101;
static const int VERSION = 40102;
static const char* pszSubVer = "";
static const bool VERSION_IS_BETA = true;

Expand Down

0 comments on commit a02d6ab

Please sign in to comment.