Skip to content

Commit 39c4f93

Browse files
author
Chris
committed
Update 2.0.2
Changes for next Superblock
1 parent a0544a1 commit 39c4f93

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 2)
44
define(_CLIENT_VERSION_MINOR, 0)
5-
define(_CLIENT_VERSION_REVISION, 1)
6-
define(_CLIENT_VERSION_BUILD, 1)
5+
define(_CLIENT_VERSION_REVISION, 2)
6+
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2018)
99
AC_INIT([Bitcloud Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://bit-cloud.info],[bitcloud])

src/clientversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//! These need to be macros, as clientversion.cpp's and bitcloud*-res.rc's voodoo requires it
1717
#define CLIENT_VERSION_MAJOR 2
1818
#define CLIENT_VERSION_MINOR 0
19-
#define CLIENT_VERSION_REVISION 1
20-
#define CLIENT_VERSION_BUILD 1
19+
#define CLIENT_VERSION_REVISION 2
20+
#define CLIENT_VERSION_BUILD 0
2121
//bitcoingui.cpp L116
2222
//! Set to true for release, false for prerelease or test build
2323
#define CLIENT_VERSION_IS_RELEASE true

src/masternode-budget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ int nSubmittedFinalBudget;
2929
int GetBudgetPaymentCycleBlocks()
3030
{
3131
// Amount of blocks in a months period of time (using 1 minutes per) = (60*24*30)
32-
if (Params().NetworkID() == CBaseChainParams::MAIN) return 43200;
32+
if (Params().NetworkID() == CBaseChainParams::MAIN) return 8640;
3333
//for testing purposes
3434

3535
return 144; //ten times per day

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static const int INIT_PROTO_VERSION = 209;
2121
static const int GETHEADERS_VERSION = 70077;
2222

2323
//! disconnect from peers older than this proto version
24-
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70713;
24+
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70714;
2525
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 70714;
2626

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

0 commit comments

Comments
 (0)