Skip to content

Commit

Permalink
v0.6.5.2 Release: Version and Checkpoints Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostlander committed Mar 20, 2014
1 parent 9d5bf68 commit 90cfe3d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
13 changes: 3 additions & 10 deletions phoenixcoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET =
VERSION = 0.6.5.1b
TARGET = phoenixcoin-qt
VERSION = 0.6.5.2b
INCLUDEPATH += src src/json src/qt
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE USE_IPV6
CONFIG += no_include_pwd
Expand Down Expand Up @@ -75,13 +75,6 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) {
QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets
}

!windows {
# for extra security against potential buffer overflows
QMAKE_CXXFLAGS += -fstack-protector
QMAKE_LFLAGS += -fstack-protector
# do not enable this on windows, as it will result in a non-working executable!
}

# regenerate src/build.h
!windows|contains(USE_BUILD_INFO, 1) {
genbuild.depends = FORCE
Expand Down Expand Up @@ -352,7 +345,7 @@ macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm
macx:LIBS += -framework Foundation -framework ApplicationServices -framework AppKit
macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0
macx:ICON = src/qt/res/icons/bitcoin.icns
macx:TARGET = "phoenixcoin-qt"
macx:TARGET = "Phoenixcoin-Qt"

# Set libraries and includes at end, to use platform-defined defaults if not overridden
INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH
Expand Down
1 change: 1 addition & 0 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ namespace Checkpoints
( 180000, uint256("0xb23684c957a35aaa7522f45f5088a3271855e373b39a62b688fc87bae2cccae8"))
( 200000, uint256("0xe8bbfa06d1ea5fea06491403094b3d86bc11fbc0e3845add62d0c46dc8b95627"))
( 225000, uint256("0xe20d9893262980dff322f94fa89eac747b57bc739f3fef0e6d439628c20db9d3"))
( 266666, uint256("0x60f3f4e37cf17adc8a5c59e78a50715158149136b23fcaf557bc40c06471f6c2"))
;

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 @@ -2640,7 +2640,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 = 225000, nRefTime = 1391114035; // block #225000
long nRefHeight = 266666, nRefTime = 1395213579; // block #266666
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 1
#define CLIENT_VERSION_BUILD 2

static const int CLIENT_VERSION =
1000000 * CLIENT_VERSION_MAJOR
Expand Down

0 comments on commit 90cfe3d

Please sign in to comment.