Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
StakeBox committed Mar 24, 2016
1 parent 4fd7c2d commit dbfed2b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DarkNet Repository (Version 1.0.1.0)
DarkNet Repository (Version 1.0.2.1)
More information at darknet-crypto.com
Visit our ANN thread at bitcointalk.org/index.php?topic=1262920

Expand All @@ -16,7 +16,7 @@ Blocks 2-259200 Approx. 180 DAYS

PoW Rewards Breakdown:
Blocks 2-43200 20% MNODE (50 DNET) / 80% MINER (200 DNET)
Blocks 43201-259201 Min of 20% MNODE (50 DNET) Max of 30% MNODE (75 DNET)/ 70% MINER (175 DNET) / Max 10% (25 DNET) PROPOSALS
Blocks 43201-259201 20% MNODE (50 DNET)/ 70% MINER (175 DNET) / Max 10% (25 DNET) PROPOSALS
Rewards for blocks after the switch to PoS will be split in proportions to be determined at a later date.

PoS Staking Rewards:
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2015)
AC_INIT([Dash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[www.darknet-crypto.com],[darknet])
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "darknet-linux-1.0.2.0"
name: "darknet-linux-1.0.2.1"
enable_cache: true
suites:
- "precise"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-osx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "darknet-osx-1.0.2.0"
name: "darknet-osx-1.0.2.1"
enable_cache: true
suites:
- "precise"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-rpi2.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "darknet-raspberry-1.0.2.0"
name: "darknet-raspberry-1.0.2.1"
enable_cache: true
suites:
- "precise"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "darknet-win-1.0.2.0"
name: "darknet-win-1.0.2.1"
enable_cache: true
suites:
- "precise"
Expand Down
4 changes: 2 additions & 2 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//! These need to be macros, as clientversion.cpp's and darknet*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 1

//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
8 changes: 4 additions & 4 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* network protocol versioning
*/

static const int PROTOCOL_VERSION = 70103;
static const int PROTOCOL_VERSION = 70106;

//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand All @@ -22,19 +22,19 @@ static const int GETHEADERS_VERSION = 70077;
static const int MIN_PEER_PROTO_VERSION = 70066;

//! minimum peer version accepted by ObfuscatePool
static const int MIN_POOL_PEER_PROTO_VERSION = 70103;
static const int MIN_POOL_PEER_PROTO_VERSION = 70106;

//! minimum peer version for masternode budgets
static const int MIN_BUDGET_PEER_PROTO_VERSION = 70103;

//! minimum peer version for masternode winner broadcasts
static const int MIN_MNW_PEER_PROTO_VERSION = 70103;
static const int MIN_MNW_PEER_PROTO_VERSION = 70104;

//! minimum peer version that can receive masternode payments
// V1 - Last protocol version before update
// V2 - Newest protocol version
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70066;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70103;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70106;

//! nTime field added to CAddress, starting with this version;
//! if possible, avoid requesting addresses nodes older than this
Expand Down

0 comments on commit dbfed2b

Please sign in to comment.