From 14a6affb3a6b2bf4bfae4160f8fae9999c67d046 Mon Sep 17 00:00:00 2001 From: Marian Date: Sat, 4 Apr 2015 22:32:10 +0200 Subject: [PATCH 1/3] Update checkpoints.cpp --- src/checkpoints.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 78bcda2b876..2bf37c74025 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -25,7 +25,7 @@ namespace Checkpoints static MapCheckpoints mapCheckpoints = boost::assign::map_list_of ( 0, hashGenesisBlockOfficial ) - ( 7299, uint256("0x000000000459fab16a559a7db9c1ad9e31a8b370581dc6d31798d5680aee7b04")) + ( 108000, uint256("0x000000000a477ce18765b6e1f9ecce106a1e56a60c95f618723b3acde4f27067")) ; static MapCheckpoints mapCheckpointsTestnet = From f6f94043207aef1533416cec1150dc9c8b76dae8 Mon Sep 17 00:00:00 2001 From: Marian Date: Sat, 4 Apr 2015 22:48:17 +0200 Subject: [PATCH 2/3] Update checkpoints.cpp --- src/checkpoints.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 2bf37c74025..0050bd25fbd 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -25,7 +25,10 @@ namespace Checkpoints static MapCheckpoints mapCheckpoints = boost::assign::map_list_of ( 0, hashGenesisBlockOfficial ) + ( 7299, uint256("0x000000000459fab16a559a7db9c1ad9e31a8b370581dc6d31798d5680aee7b04")) + ( 105854, uint256("0x00000000092ae1bca884519328f2dbd4890c4c87a3a05d6fa689c46aad654ae0")) ( 108000, uint256("0x000000000a477ce18765b6e1f9ecce106a1e56a60c95f618723b3acde4f27067")) + ( 108300, uint256("0xbce0b9c496643bbba8d8e1cee1d1814f58c023306f3c4d6e4f24e83288f6066f")) ; static MapCheckpoints mapCheckpointsTestnet = From 9c6ad527fb6cc6e28aa5608ceee0f96ce4b17694 Mon Sep 17 00:00:00 2001 From: Marian Date: Sat, 4 Apr 2015 22:51:49 +0200 Subject: [PATCH 3/3] 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