From 1c6dbb6cb1a0791d12a139c7fca2197a30f8f2c5 Mon Sep 17 00:00:00 2001 From: bumbacoin Date: Mon, 11 Jun 2018 22:05:13 +0800 Subject: [PATCH] version bump, developer address --- configure.ac | 2 +- src/clientversion.h | 2 +- src/masternode-payments.cpp | 2 +- src/version.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 1f5681d..b74e556 100755 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 1) define(_CLIENT_VERSION_MINOR, 0) -define(_CLIENT_VERSION_REVISION, 2) +define(_CLIENT_VERSION_REVISION, 3) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2018) diff --git a/src/clientversion.h b/src/clientversion.h index 8d0b10d..6b0eaaa 100755 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -16,7 +16,7 @@ //! These need to be macros, as clientversion.cpp's and mirai*-res.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 #define CLIENT_VERSION_MINOR 0 -#define CLIENT_VERSION_REVISION 2 +#define CLIENT_VERSION_REVISION 3 #define CLIENT_VERSION_BUILD 0 //bitcoingui.cpp L116 //! Set to true for release, false for prerelease or test build diff --git a/src/masternode-payments.cpp b/src/masternode-payments.cpp index f3eb9cb..7b1b526 100755 --- a/src/masternode-payments.cpp +++ b/src/masternode-payments.cpp @@ -303,7 +303,7 @@ void CMasternodePayments::FillBlockPayee(CMutableTransaction& txNew, int64_t nFe CAmount masternodePayment = GetMasternodePayment(pindexPrev->nHeight +1, blockValue); CAmount developerfeePayment = blockValue * 0.05; - CBitcoinAddress developerfeeaddress("MVUtbZkQVCe9zET1L9W16kzjsWn5Sexhmq"); + CBitcoinAddress developerfeeaddress("MH85DF4VeUCunuzoNurcXUy2BMcJRsFBsQ"); CScript developerfeescriptpubkey = GetScriptForDestination(developerfeeaddress.Get()); if (hasPayment) { diff --git a/src/version.h b/src/version.h index 6701b72..e6f0122 100755 --- a/src/version.h +++ b/src/version.h @@ -12,7 +12,7 @@ * network protocol versioning */ -static const int PROTOCOL_VERSION = 70716; +static const int PROTOCOL_VERSION = 70717; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;