Skip to content

Commit

Permalink
end of pow block and checkpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
CMOS-Project committed Jan 26, 2018
1 parent 4439357 commit 8778a37
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
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, 1)
define(_CLIENT_VERSION_BUILD, 2)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
AC_INIT([Cosmos Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[www.CosmosCoin.org],[cmos])
Expand Down
12 changes: 6 additions & 6 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ static void convertSeed6(std::vector<CAddress>& vSeedsOut, const SeedSpec6* data
// + Contains no strange transactions
static Checkpoints::MapCheckpoints mapCheckpoints =
boost::assign::map_list_of(1, uint256("0000007e17dae96553844e4cfd14f42b91028ad01d33f975e2a42c5fc7c29e73"))
(8, uint256("00000da3fda610fae50e58437678c16f8c55f29f31dbd7f0ec526755fb698b00"))
(15, uint256("00000700a5f8d0fba7a0e4f72c22ddf516430b518b9e11940c89665c4a69e8e5"))
(20, uint256("00000f29a1c53ec153a5890e82fbc5b97667953c8e41a593e350108e41a2ab2d"));
(20, uint256("00000f29a1c53ec153a5890e82fbc5b97667953c8e41a593e350108e41a2ab2d"))
(44556, uint256("81dd004643e4c7a4b0a99964faac59337053a0abf88d4125e541aa7be39e5df0"))
(51771, uint256("d863b0e89b3ca2b6061d07cc01bfe7675af4e0005ee768594481e0b71d30bd18"));

static const Checkpoints::CCheckpointData data = {
&mapCheckpoints,
1514059402, // * UNIX timestamp of last checkpoint block
21, // * total number of transactions between genesis and last checkpoint
1517000281, // * UNIX timestamp of last checkpoint block
85388, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
2000 // * estimated number of transactions per day after checkpoint
};
Expand Down Expand Up @@ -109,7 +109,7 @@ class CMainParams : public CChainParams
nMinerThreads = 0;
nTargetTimespan = 1 * 60; // Cmos: 1 minute
nTargetSpacing = 1 * 60; // Cmos: 1 minute
nLastPOWBlock = 10000000;
nLastPOWBlock = 72000;
nMaturity = 100;
nMasternodeCountDrift = 20;
nModifierUpdateBlock = 0;
Expand Down

0 comments on commit 8778a37

Please sign in to comment.