Skip to content

Commit ba7df47

Browse files
authored
Merge pull request #14 from CryptoCoderz/master
DigitalNote v1.0.1.6 Release
2 parents f5183d9 + f3b9883 commit ba7df47

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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.5
3+
VERSION = 1.0.1.6
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ void VRX_ThreadCurve(const CBlockIndex* pindexLast, bool fProofOfStake)
308308
if(fDebug) VRXswngdebug();
309309

310310
// Version 1.2 Extended Curve Run Upgrade
311-
if(pindexLast->GetBlockTime() > nPaymentUpdate_2) {// ON Monday, Jun 24, 2019 12:00:00 PM PDT
311+
if(pindexLast->GetBlockTime() > nPaymentUpdate_2) {// ON Tuesday, Jul 02, 2019 12:00:00 PM PDT
312312
// Set unbiased comparison
313313
difTime = blkTime - cntTime;
314314
// Run Curve
@@ -355,7 +355,7 @@ void VRX_Dry_Run(const CBlockIndex* pindexLast)
355355
return; // diff reset
356356
}
357357
}
358-
if(pindexLast->GetBlockTime() > nPaymentUpdate_2) // ON Monday, Jun 24, 2019 12:00:00 PM PDT
358+
if(pindexLast->GetBlockTime() > nPaymentUpdate_2) // ON Tuesday, Jul 02, 2019 12:00:00 PM PDT
359359
{
360360
if(pindexLast->GetBlockTime() < nPaymentUpdate_2+480) {
361361
fDryRun = true;

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 5
12+
#define CLIENT_VERSION_BUILD 6
1313

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

src/fork.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static const int64_t nReservePhaseStart = 1;
1313
/** Masternode/Devops Payment Update 1 **/
1414
static const int64_t nPaymentUpdate_1 = 1558310400;
1515
/** Masternode/Devops Payment Update 2 **/
16-
static const int64_t nPaymentUpdate_2 = 1561402800;
16+
static const int64_t nPaymentUpdate_2 = 1562094000;
1717
/** Velocity toggle block */
1818
static const int64_t VELOCITY_TOGGLE = 175; // Implementation of the Velocity system into the chain.
1919
/** Velocity retarget toggle block */

src/version.h

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

3535
// intial proto version, to be increased after version/verack negotiation
3636
static const int INIT_PROTO_VERSION = 209;
@@ -57,7 +57,7 @@ static const int NOBLKS_VERSION_START = 0;
5757
static const int NOBLKS_VERSION_END = 62008;
5858

5959
// hard cutoff time for legacy network connections
60-
static const int64_t HRD_LEGACY_CUTOFF = 1561402800; // ON (Monday, Jun 24, 2019 12:00:00 PM PDT)
60+
static const int64_t HRD_LEGACY_CUTOFF = 1562094000; // ON (Tuesday, Jul 02, 2019 12:00:00 PM PDT)
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)