Skip to content

Commit

Permalink
v1.0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bitcoinfinal committed Apr 1, 2018
1 parent c915bff commit 3e93b36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bitcoinfinal-qt.pro
Original file line number Diff line number Diff line change
@@ -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
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 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
Expand Down
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3e93b36

Please sign in to comment.