From c155ae476b0b89b1f38c4539cdd3e8ad66ab651d Mon Sep 17 00:00:00 2001 From: CryptoCoderz Date: Tue, 21 May 2019 14:49:57 -0700 Subject: [PATCH] DigitalNote v1.0.1.4 Release Changelog - Version bump - Disabled Masternode address checking at this time (causes syncing issues for many users, will be reworked and added back in later) --- DigitalNote.pro | 2 +- src/clientversion.h | 2 +- src/main.cpp | 6 ++++-- src/version.h | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/DigitalNote.pro b/DigitalNote.pro index d3bc778a..187da1d7 100644 --- a/DigitalNote.pro +++ b/DigitalNote.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = DigitalNote-qt -VERSION = 1.0.1.3 +VERSION = 1.0.1.4 INCLUDEPATH += src src/json src/qt src/qt/plugins/mrichtexteditor QT += core gui widgets network printsupport DEFINES += ENABLE_WALLET diff --git a/src/clientversion.h b/src/clientversion.h index f4f85837..eaf0b25f 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -9,7 +9,7 @@ #define CLIENT_VERSION_MAJOR 1 #define CLIENT_VERSION_MINOR 0 #define CLIENT_VERSION_REVISION 1 -#define CLIENT_VERSION_BUILD 3 +#define CLIENT_VERSION_BUILD 4 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true diff --git a/src/main.cpp b/src/main.cpp index 0f4de7ad..c5192d2c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2679,7 +2679,8 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c } else { LogPrintf("CheckBlock() : PoS Recipient masternode address validity could not be verified\n"); if (!fIsInitialDownload) { - fBlockHasPayments = false; + LogPrintf("CheckBlock() : PoS Recipient masternode address validity disabled at this time...\n"); + // fBlockHasPayments = false; } else { LogPrintf("CheckBlock() : PoS Recipient masternode address validity skipping, syncing in progress!\n"); } @@ -2718,7 +2719,8 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c } else { LogPrintf("CheckBlock() : PoW Recipient masternode address validity could not be verified\n"); if (!fIsInitialDownload) { - fBlockHasPayments = false; + LogPrintf("CheckBlock() : PoW Recipient masternode address validity disabled at this time...\n"); + // fBlockHasPayments = false; } else { LogPrintf("CheckBlock() : PoW Recipient masternode address validity skipping, syncing in progress!\n"); } diff --git a/src/version.h b/src/version.h index 02bdb5e8..28a8fed2 100644 --- a/src/version.h +++ b/src/version.h @@ -30,7 +30,7 @@ static const int DATABASE_VERSION = 70509; // // network protocol versioning // -static const int PROTOCOL_VERSION = 62010; +static const int PROTOCOL_VERSION = 62011; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;