Skip to content

Commit

Permalink
spork and version change
Browse files Browse the repository at this point in the history
  • Loading branch information
mark2994u committed Sep 1, 2018
1 parent 3db62c4 commit 2a9a0b8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
AC_INIT([Coin2Play Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[www.coin2play.org],[coin2play])
Expand Down
3 changes: 2 additions & 1 deletion src/chainparams.cpp
Expand Up @@ -148,7 +148,8 @@ class CMainParams : public CChainParams
fHeadersFirstSyncingActive = false;

nPoolMaxTransactions = 3;
strSporkKey = "04f3158d4c7f554f9141cf5a9d1183a346bfd4242f3c57136b7dcf27d5d9cc8dad1f7523c704f1ade8dc4044588afe80398b816c3fc68c9aa28936ff9538563b80";
// strSporkKey = "04f3158d4c7f554f9141cf5a9d1183a346bfd4242f3c57136b7dcf27d5d9cc8dad1f7523c704f1ade8dc4044588afe80398b816c3fc68c9aa28936ff9538563b80";
strSporkKey = "02d603e7bc55dad32a3e1c444b6d76c86a2d7953b7659b85cda4eaca8a8db17cd2";
strObfuscationPoolDummyAddress = "c2GDUTi4w3Pv8i4c8msQCZjwe2MHhi38kv";
nStartMasternodePayments = 1533025857;
}
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_BUILD 1

//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Expand Up @@ -12,7 +12,7 @@
* network protocol versioning
*/

static const int PROTOCOL_VERSION = 70101;
static const int PROTOCOL_VERSION = 70102;

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

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

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

0 comments on commit 2a9a0b8

Please sign in to comment.