Skip to content

Commit fc172f4

Browse files
authored
Merge pull request #20 from ghost-coin/fix/reward-addr
fix: reward address
2 parents c42e8e2 + 9800038 commit fc172f4

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AC_PREREQ([2.69])
22
define(_CLIENT_VERSION_MAJOR, 0)
33
define(_CLIENT_VERSION_MINOR, 21)
44
define(_CLIENT_VERSION_REVISION, 1)
5-
define(_CLIENT_VERSION_GHOST, 9)
5+
define(_CLIENT_VERSION_GHOST, 10)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_RC, 0)
88
define(_CLIENT_VERSION_IS_RELEASE, true)

src/chainparams.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ class CMainParams : public CChainParams {
534534
consensus.nBlockRewardIncreaseHeight = 40862;
535535
consensus.nGVRPayOnetimeAmt = 129000 * COIN;
536536
consensus.nOneTimeGVRPayHeight = 42308;
537-
consensus.nGVRTreasuryFundAdjustment = 140536;
537+
consensus.nGVRTreasuryFundAdjustment = 458743;
538538
nBlockRewardIncrease = 2;
539539
nBlockPerc = {100, 100, 95, 90, 86, 81, 77, 74, 70, 66, 63, 60, 57, 54, 51, 49, 46, 44, 42, 40, 38, 36, 34, 32, 31, 29, 28, 26, 25, 24, 23, 21, 20, 19, 18, 17, 17, 16, 15, 14, 14, 13, 12, 12, 11, 10, 10};
540540

@@ -555,7 +555,8 @@ class CMainParams : public CChainParams {
555555
// release ASAP to avoid it where possible.
556556
vSeeds.emplace_back("ghostseeder.ghostbyjohnmcafee.com");
557557

558-
vTreasuryFundSettings.emplace_back(140536, TreasuryFundSettings("GQJ4unJi6hAzd881YM17rEzPNWaWZ4AR3f", 66.67, 5040)); //As above but to a GVR held addr
558+
vTreasuryFundSettings.emplace_back(458743, TreasuryFundSettings("GgtiuDqVxAzg47yW7oSMmophe3tU8qoE1f", 66.67, 5040));
559+
vTreasuryFundSettings.emplace_back(140536, TreasuryFundSettings("GQJ4unJi6hAzd881YM17rEzPNWaWZ4AR3f", 66.67, 5040));
559560
vTreasuryFundSettings.emplace_back(40862, TreasuryFundSettings("Ga7ECMeX8QUJTTvf9VUnYgTQUFxPChDqqU", 66.67, 5040)); //Approx each week to GVR Funds addr
560561
vTreasuryFundSettings.emplace_back(0, TreasuryFundSettings("GQtToV2LnHGhHy4LRVapLDMaukdDgzZZZV", 33.00, 360)); //Approx each 12 hr payment to dev fund
561562

src/chainparams.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ class CChainParams
227227
std::string anonRecoveryAddress;
228228
std::uint32_t anonMaxOutputSize = 2;
229229

230+
// the `first` of the pair here is the Height
230231
std::vector<std::pair<int64_t, TreasuryFundSettings> > vTreasuryFundSettings;
231232

232233

0 commit comments

Comments
 (0)