Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DigitalNote.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET = DigitalNote-qt
VERSION = 1.0.1.7
VERSION = 1.0.1.8
INCLUDEPATH += src src/json src/qt src/qt/plugins/mrichtexteditor
QT += core gui widgets network printsupport
DEFINES += ENABLE_WALLET
Expand Down
2 changes: 1 addition & 1 deletion src/blockparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void VRXswngdebug()
{
// Print for debugging
LogPrintf("Previously discovered %s block: %u: \n",difType.c_str(),prvTime);
LogPrintf("Current block-time: %u: \n",difType.c_str(),cntTime);
LogPrintf("Current block-time: %u: \n",cntTime);
LogPrintf("Time since last %s block: %u: \n",difType.c_str(),difTime);
// Handle updated versions as well as legacy
if(GetTime() > nPaymentUpdate_2) {
Expand Down
3 changes: 3 additions & 0 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ namespace Checkpoints
(47500, uint256("0x0cb5289c555684443f303fcc7d1e8608732bdf48d90bca5a14a9b0c709066078"))
(47700, uint256("0xf78d6c29f621194e786b4c470278663671c285993869a2d0d59bba31425c9a02"))
(65544, uint256("0x000000000049a58f04f1beb0ed6c2e6ab11919b8a4323caee6e9a217c89eff69"))
(66400, uint256("0x8035935fc3b5e8b58ab023336d6f7f1ec35eac9930cdd238ce35771cd7b3964d"))
(67500, uint256("0x4df36f82141ce789aa64d80908aafca145d09f5257ebb3b7550f94e2624a2d98"))
(68200, uint256("0x000000000005ab4fb2fec8705c51aee6b04ebf51f98bca11e61d7f41bcc51e92"))
;

// TestNet has no checkpoints
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 7
#define CLIENT_VERSION_BUILD 8

// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
16 changes: 8 additions & 8 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,34 +30,34 @@ static const int DATABASE_VERSION = 70509;
//
// network protocol versioning
//
static const int PROTOCOL_VERSION = 62014;
static const int PROTOCOL_VERSION = 62015;

// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;

// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 62013;
static const int MIN_PEER_PROTO_VERSION = 62014;

// minimum peer version accepted by MNenginePool
static const int MIN_POOL_PEER_PROTO_VERSION = 62013;
static const int MIN_INSTANTX_PROTO_VERSION = 62013;
static const int MIN_POOL_PEER_PROTO_VERSION = 62014;
static const int MIN_INSTANTX_PROTO_VERSION = 62014;

//! 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 = 62013;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 62013;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 62014;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 62014;

// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
static const int CADDR_TIME_VERSION = 31402;

// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 0;
static const int NOBLKS_VERSION_END = 62012;
static const int NOBLKS_VERSION_END = 62013;

// hard cutoff time for legacy network connections
static const int64_t HRD_LEGACY_CUTOFF = 1562281200; // ON (Thursday, July 4, 2019 4:00:00 PM GMT-07:00)
static const int64_t HRD_LEGACY_CUTOFF = 9993058800; // OFF (NOT TOGGLED)

// hard cutoff time for future network connections
static const int64_t HRD_FUTURE_CUTOFF = 9993058800; // OFF (NOT TOGGLED)
Expand Down