From df4ed17a0416ee5893caee302a26381958e122ab Mon Sep 17 00:00:00 2001 From: Ghostlander Date: Sat, 1 Feb 2014 13:59:35 +0200 Subject: [PATCH] v0.6.5.1 Release: Version and Checkpoints Updated --- phoenixcoin-qt.pro | 2 +- src/checkpoints.cpp | 1 + src/main.cpp | 2 +- src/version.h | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/phoenixcoin-qt.pro b/phoenixcoin-qt.pro index fbb0779..c0777d0 100644 --- a/phoenixcoin-qt.pro +++ b/phoenixcoin-qt.pro @@ -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 diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 077ebe7..14899ad 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -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) diff --git a/src/main.cpp b/src/main.cpp index 858a2d8..c9f640f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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 diff --git a/src/version.h b/src/version.h index ef1266f..fc3bb69 100644 --- a/src/version.h +++ b/src/version.h @@ -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