Skip to content

Commit

Permalink
v0.6.5.1 Release: Version and Checkpoints Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostlander committed Feb 1, 2014
1 parent abec0fa commit df4ed17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion phoenixcoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET =
VERSION = 0.6.5.0b
VERSION = 0.6.5.1b
INCLUDEPATH += src src/json src/qt
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE USE_IPV6
CONFIG += no_include_pwd
Expand Down
1 change: 1 addition & 0 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ namespace Checkpoints
( 154000, uint256("0x1ee82ed7f55ad95e649df3051188fdb31a7620c995cd616fede0f37b5848337c"))
( 180000, uint256("0xb23684c957a35aaa7522f45f5088a3271855e373b39a62b688fc87bae2cccae8"))
( 200000, uint256("0xe8bbfa06d1ea5fea06491403094b3d86bc11fbc0e3845add62d0c46dc8b95627"))
( 225000, uint256("0xe20d9893262980dff322f94fa89eac747b57bc739f3fef0e6d439628c20db9d3"))
;

bool CheckBlock(int nHeight, const uint256& hash)
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2633,7 +2633,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
// if their nStartingHeight is much higher of what we estimate it
// to be, disconnect them.
// nRefHeight and nRefTime should be updated periodically
long nRefHeight = 200000, nRefTime = 1388828071; // block #200000
long nRefHeight = 225000, nRefTime = 1391114035; // block #225000
long nOurTime = GetAdjustedTime();
long nHeightOffset = (nOurTime - nRefTime) / nTargetSpacingFour;
// Add 10000 blocks to be safe
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 6
#define CLIENT_VERSION_REVISION 5
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_BUILD 1

static const int CLIENT_VERSION =
1000000 * CLIENT_VERSION_MAJOR
Expand Down

0 comments on commit df4ed17

Please sign in to comment.