From 6f892b6546a270bc157226c9454323aff3086dab Mon Sep 17 00:00:00 2001 From: Mullick Date: Tue, 17 Feb 2015 21:44:00 -0500 Subject: [PATCH 1/2] Update checkpoints.cpp --- src/checkpoints.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 78bcda2b876..c5bef5229b9 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -26,6 +26,7 @@ namespace Checkpoints boost::assign::map_list_of ( 0, hashGenesisBlockOfficial ) ( 7299, uint256("0x000000000459fab16a559a7db9c1ad9e31a8b370581dc6d31798d5680aee7b04")) + ( 100835, uint256("0x431ac858750189fa35c4c7fb749b4c173247f888c3ee24b53c73ba6c31bda0d4")) ; static MapCheckpoints mapCheckpointsTestnet = From 404dec7c85d9a8f6c994c22ba4aa9d7bf2ca8fd8 Mon Sep 17 00:00:00 2001 From: Mullick Date: Tue, 17 Feb 2015 21:45:08 -0500 Subject: [PATCH 2/2] Update version.h --- src/version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/version.h b/src/version.h index e7b54fbc239..266dd5a92be 100644 --- a/src/version.h +++ b/src/version.h @@ -25,7 +25,7 @@ extern const std::string CLIENT_DATE; // network protocol versioning // -static const int PROTOCOL_VERSION = 60005; +static const int PROTOCOL_VERSION = 60006; // earlier versions not supported as of Feb 2012, and are disconnected static const int MIN_PROTO_VERSION = 209; @@ -47,6 +47,6 @@ static const int MEMPOOL_GD_VERSION = 60002; #define DISPLAY_VERSION_MAJOR 0 #define DISPLAY_VERSION_MINOR 4 #define DISPLAY_VERSION_REVISION 2 -#define DISPLAY_VERSION_BUILD 0 +#define DISPLAY_VERSION_BUILD 1 #endif