Skip to content

Commit

Permalink
Merge pull request #20 from ohashi3d/yenten-4.0.0
Browse files Browse the repository at this point in the history
BIP16Height fixed
  • Loading branch information
yentencoin authored Jan 11, 2021
2 parents c418470 + 9398ac9 commit 51b36b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 4)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_YEAR, 2021)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Yenten Core]])
AC_INIT([Yenten Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/yentencoin/yenten/issues],[yenten],[https://yentencoin.info/])
Expand Down
6 changes: 3 additions & 3 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class CMainParams : public CChainParams {
CMainParams() {
strNetworkID = "main";
consensus.nSubsidyHalvingInterval = 800000;
//consensus.BIP16Height = 0;
consensus.BIP16Height = 0; // fixed
consensus.BIP34Height = 700000;
// consensus.BIP34Height = 17;
// consensus.BIP34Hash = uint256();
Expand Down Expand Up @@ -190,7 +190,7 @@ class CTestNetParams : public CChainParams {
CTestNetParams() {
strNetworkID = "test";
consensus.nSubsidyHalvingInterval = 800000;
//consensus.BIP16Height = 0;
consensus.BIP16Height = 0; // fixed
consensus.BIP34Height = 0;
consensus.BIP34Hash = uint256S("0x00002a66f0c687f619934409d376c52fe721833f05940e4c20deaaa0122d7fb8");
consensus.BIP65Height = 12720;
Expand Down Expand Up @@ -282,7 +282,7 @@ class CRegTestParams : public CChainParams {
CRegTestParams() {
strNetworkID = "regtest";
consensus.nSubsidyHalvingInterval = 150;
//consensus.BIP16Height = 0;
consensus.BIP16Height = 0; // fixed
consensus.BIP34Height = 100000000; // BIP34 has not activated on regtest (far in the future so block v1 are not rejected in tests)
consensus.BIP34Hash = uint256();
consensus.BIP65Height = 1351; // BIP65 activated on regtest (Used in rpc activation tests)
Expand Down

0 comments on commit 51b36b6

Please sign in to comment.