From 3e93b365d34ce7175696bb7025dbc308ba7a709d Mon Sep 17 00:00:00 2001 From: BitcoinFinal Date: Mon, 2 Apr 2018 06:42:15 +0800 Subject: [PATCH] v1.0.0.2 --- bitcoinfinal-qt.pro | 2 +- src/clientversion.h | 2 +- src/main.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitcoinfinal-qt.pro b/bitcoinfinal-qt.pro index be247e4..14adfa0 100644 --- a/bitcoinfinal-qt.pro +++ b/bitcoinfinal-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = BitcoinFinal-qt -VERSION = 1.0.0.1 +VERSION = 1.0.0.2 INCLUDEPATH += src src/json src/qt src/qt/plugins/mrichtexteditor QT += network printsupport DEFINES += ENABLE_WALLET diff --git a/src/clientversion.h b/src/clientversion.h index 68f0388..f8dc3a5 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 0 -#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 diff --git a/src/main.h b/src/main.h index 1a95edb..0b95377 100644 --- a/src/main.h +++ b/src/main.h @@ -73,7 +73,7 @@ inline int64_t FutureDrift(int64_t nTime) { return nTime + DRIFT; } /** "reject" message codes **/ static const unsigned char REJECT_INVALID = 0x10; -inline int64_t GetMNCollateral(int nHeight) { return nHeight>=7000 ? 3000 : 2500; } +inline int64_t GetMNCollateral(int nHeight) { return nHeight>=16000 ? 8888 : 3000; } extern CScript COINBASE_FLAGS; extern CCriticalSection cs_main;