Skip to content

Commit

Permalink
disconnect older clients
Browse files Browse the repository at this point in the history
  • Loading branch information
bumbacoin committed Jun 29, 2018
1 parent b71dbe1 commit 6c1007e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -16,7 +16,7 @@
//! These need to be macros, as clientversion.cpp's and mirai*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 1
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 0
//bitcoingui.cpp L116
//! Set to true for release, false for prerelease or test build
Expand Down
2 changes: 1 addition & 1 deletion src/spork.h
Expand Up @@ -53,7 +53,7 @@ using namespace boost;
#define SPORK_12_RECONSIDER_BLOCKS_DEFAULT 0
#define SPORK_13_ENABLE_SUPERBLOCKS_DEFAULT 4070908800 //OFF
#define SPORK_14_NEW_PROTOCOL_ENFORCEMENT_DEFAULT 4070908800 //OFF
#define SPORK_15_NEW_PROTOCOL_ENFORCEMENT_2_DEFAULT 1530295200 // (GMT): Friday, June 29, 2018 6:00:00 PM disconnect older clients in preperation for difficulty algo adjustment
#define SPORK_15_NEW_PROTOCOL_ENFORCEMENT_2_DEFAULT 4070908800 //OFF // (GMT): Friday, June 29, 2018 6:00:00 PM disconnect older clients in preperation for difficulty algo adjustment
#define SPORK_16_MN_WINNER_MINIMUM_AGE_DEFAULT 1500 // Age in seconds. This should be > MASTERNODE_REMOVAL_SECONDS to avoid misconfigured new nodes in the list.
// Set this to zero to emulate classic behaviour
class CSporkMessage;
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Expand Up @@ -21,7 +21,7 @@ static const int INIT_PROTO_VERSION = 209;
static const int GETHEADERS_VERSION = 70077;

//! disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70717;
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70719;
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 70719;

//! nTime field added to CAddress, starting with this version;
Expand Down

0 comments on commit 6c1007e

Please sign in to comment.