Skip to content

Commit e4e277c

Browse files
authored
Merge pull request #16 from CryptoCoderz/master
DigitalNote v1.0.1.8 Release
2 parents 23eaaae + c57db92 commit e4e277c

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

DigitalNote.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TEMPLATE = app
22
TARGET = DigitalNote-qt
3-
VERSION = 1.0.1.7
3+
VERSION = 1.0.1.8
44
INCLUDEPATH += src src/json src/qt src/qt/plugins/mrichtexteditor
55
QT += core gui widgets network printsupport
66
DEFINES += ENABLE_WALLET

src/blockparams.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void VRXswngdebug()
101101
{
102102
// Print for debugging
103103
LogPrintf("Previously discovered %s block: %u: \n",difType.c_str(),prvTime);
104-
LogPrintf("Current block-time: %u: \n",difType.c_str(),cntTime);
104+
LogPrintf("Current block-time: %u: \n",cntTime);
105105
LogPrintf("Time since last %s block: %u: \n",difType.c_str(),difTime);
106106
// Handle updated versions as well as legacy
107107
if(GetTime() > nPaymentUpdate_2) {

src/checkpoints.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ namespace Checkpoints
3636
(47500, uint256("0x0cb5289c555684443f303fcc7d1e8608732bdf48d90bca5a14a9b0c709066078"))
3737
(47700, uint256("0xf78d6c29f621194e786b4c470278663671c285993869a2d0d59bba31425c9a02"))
3838
(65544, uint256("0x000000000049a58f04f1beb0ed6c2e6ab11919b8a4323caee6e9a217c89eff69"))
39+
(66400, uint256("0x8035935fc3b5e8b58ab023336d6f7f1ec35eac9930cdd238ce35771cd7b3964d"))
40+
(67500, uint256("0x4df36f82141ce789aa64d80908aafca145d09f5257ebb3b7550f94e2624a2d98"))
41+
(68200, uint256("0x000000000005ab4fb2fec8705c51aee6b04ebf51f98bca11e61d7f41bcc51e92"))
3942
;
4043

4144
// TestNet has no checkpoints

src/clientversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define CLIENT_VERSION_MAJOR 1
1010
#define CLIENT_VERSION_MINOR 0
1111
#define CLIENT_VERSION_REVISION 1
12-
#define CLIENT_VERSION_BUILD 7
12+
#define CLIENT_VERSION_BUILD 8
1313

1414
// Set to true for release, false for prerelease or test build
1515
#define CLIENT_VERSION_IS_RELEASE true

src/version.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,34 +30,34 @@ static const int DATABASE_VERSION = 70509;
3030
//
3131
// network protocol versioning
3232
//
33-
static const int PROTOCOL_VERSION = 62014;
33+
static const int PROTOCOL_VERSION = 62015;
3434

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

3838
// disconnect from peers older than this proto version
39-
static const int MIN_PEER_PROTO_VERSION = 62013;
39+
static const int MIN_PEER_PROTO_VERSION = 62014;
4040

4141
// minimum peer version accepted by MNenginePool
42-
static const int MIN_POOL_PEER_PROTO_VERSION = 62013;
43-
static const int MIN_INSTANTX_PROTO_VERSION = 62013;
42+
static const int MIN_POOL_PEER_PROTO_VERSION = 62014;
43+
static const int MIN_INSTANTX_PROTO_VERSION = 62014;
4444

4545
//! minimum peer version that can receive masternode payments
4646
// V1 - Last protocol version before update
4747
// V2 - Newest protocol version
48-
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 62013;
49-
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 62013;
48+
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 62014;
49+
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 62014;
5050

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

5555
// only request blocks from nodes outside this range of versions
5656
static const int NOBLKS_VERSION_START = 0;
57-
static const int NOBLKS_VERSION_END = 62012;
57+
static const int NOBLKS_VERSION_END = 62013;
5858

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

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

0 commit comments

Comments
 (0)