Skip to content

Commit

Permalink
Merge pull request #476 from zcoinofficial/copyright-notice-update
Browse files Browse the repository at this point in the history
Sigma start date updated
  • Loading branch information
Putta Khunchalee authored Jun 27, 2019
2 parents 76197eb + c51bc96 commit 1a454e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,9 @@ std::string CopyrightHolders(const std::string& strPrefix)

// Check for untranslated substitution to make sure Bitcoin Core copyright is not removed by accident
if (strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION).find("Bitcoin Core") == std::string::npos) {
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
strCopyrightHolders
+= '\n' + strPrefix + "The Bitcoin Core developers"
+ '\n' + strPrefix + "The Dash Core developers";
}
return strCopyrightHolders;
}
Expand Down
2 changes: 1 addition & 1 deletion src/zerocoin_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static const int64_t DUST_HARD_LIMIT = 1000; // 0.00001 XZC mininput
#define ZC_V1_5_GRACEFUL_PERIOD 1500

// Block after which sigma mints are activated.
#define ZC_SIGMA_STARTING_BLOCK 178600 //Approx July 11th, 2019, 8:00 AM UTC
#define ZC_SIGMA_STARTING_BLOCK 182030 //Approx July 23rd, 2019, 8:00 AM UTC
#define ZC_SIGMA_TESTNET_STARTING_BLOCK 50000

// Number of blocks after ZC_SIGMA_STARTING_BLOCK during which we still accept zerocoin V2 mints into mempool.
Expand Down

0 comments on commit 1a454e1

Please sign in to comment.