Skip to content

Commit

Permalink
blocked old wallets from connecting to the network.
Browse files Browse the repository at this point in the history
  • Loading branch information
XxTheMatrix101xX committed Aug 7, 2018
1 parent a047f9e commit 5cc4fa3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 12)
define(_CLIENT_VERSION_REVISION, 6)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_BUILD, 2)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
define(_COPYRIGHT_YEAR, 2018)
AC_INIT([Kore Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/kore-core/kore/issues],[kore])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([src/config/kore-config.h])
Expand Down
Binary file modified src/bench/bench_kore
Binary file not shown.
4 changes: 2 additions & 2 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 12
#define CLIENT_VERSION_REVISION 6
#define CLIENT_VERSION_BUILD 1
#define CLIENT_VERSION_BUILD 2

//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand All @@ -26,7 +26,7 @@
* Copyright year (2009-this)
* Todo: update this when changing our copyright comments in the source
*/
#define COPYRIGHT_YEAR 2016
#define COPYRIGHT_YEAR 2018

#endif //HAVE_CONFIG_H

Expand Down
1 change: 0 additions & 1 deletion src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,6 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
configfile.open(pathConfig.string().c_str(),fstream::out);
configfile<<"zapwallettxes=1"<<std::endl;
configfile<<"staking=1"<<std::endl;
configfile<<"seednode=agqiamu7sbter6vy.onion"<<std::endl;
for (auto a:onionseeds)
configfile<<"addnode="<< a <<std::endl;

Expand Down
12 changes: 6 additions & 6 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* network protocol versioning
*/

static const int PROTOCOL_VERSION = 70100;
static const int PROTOCOL_VERSION = 70101;

//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand All @@ -21,21 +21,21 @@ static const int GETHEADERS_VERSION = 31800;
static const int CANONICAL_BLOCK_SIG_VERSION = 70012;

//! disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 70012;
static const int MIN_PEER_PROTO_VERSION = 70100;

//! minimum peer version accepted by DarksendPool
static const int MIN_POOL_PEER_PROTO_VERSION = 70012;
static const int MIN_POOL_PEER_PROTO_VERSION = 70100;

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

//! minimum peer version for masternode winner broadcasts
static const int MIN_MNW_PEER_PROTO_VERSION = 70012;
static const int MIN_MNW_PEER_PROTO_VERSION = 70100;

//! 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 = 70012;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70100;

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

0 comments on commit 5cc4fa3

Please sign in to comment.