diff --git a/configure.ac b/configure.ac index c6b7ba5..bbfe356 100755 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 2) define(_CLIENT_VERSION_MINOR, 0) -define(_CLIENT_VERSION_REVISION, 1) -define(_CLIENT_VERSION_BUILD, 1) +define(_CLIENT_VERSION_REVISION, 2) +define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2018) AC_INIT([Bitcloud Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://bit-cloud.info],[bitcloud]) diff --git a/src/clientversion.h b/src/clientversion.h index 48a5c44..07fe217 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -16,8 +16,8 @@ //! These need to be macros, as clientversion.cpp's and bitcloud*-res.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 2 #define CLIENT_VERSION_MINOR 0 -#define CLIENT_VERSION_REVISION 1 -#define CLIENT_VERSION_BUILD 1 +#define CLIENT_VERSION_REVISION 2 +#define CLIENT_VERSION_BUILD 0 //bitcoingui.cpp L116 //! Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true diff --git a/src/masternode-budget.cpp b/src/masternode-budget.cpp index a8a5cb6..7720b08 100644 --- a/src/masternode-budget.cpp +++ b/src/masternode-budget.cpp @@ -29,7 +29,7 @@ int nSubmittedFinalBudget; int GetBudgetPaymentCycleBlocks() { // Amount of blocks in a months period of time (using 1 minutes per) = (60*24*30) - if (Params().NetworkID() == CBaseChainParams::MAIN) return 43200; + if (Params().NetworkID() == CBaseChainParams::MAIN) return 8640; //for testing purposes return 144; //ten times per day diff --git a/src/version.h b/src/version.h index 8e62447..bd22d55 100644 --- a/src/version.h +++ b/src/version.h @@ -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 = 70713; +static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70714; static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 70714; //! nTime field added to CAddress, starting with this version;