Skip to content

Commit

Permalink
diff algo Dark Gravity Wave start in block 8000
Browse files Browse the repository at this point in the history
  • Loading branch information
onexcashdev committed Nov 26, 2017
1 parent 9ef7484 commit 57fa475
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Onex Cash Core staging tree 1.2.0
Onex Cash Core staging tree 1.3.0
===============================

![onex logo](https://raw.githubusercontent.com/onexcash/onex-core/master/src/qt/res/images/light/onex_logo_horizontal.png)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 2)
define(_CLIENT_VERSION_MINOR, 3)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
Expand Down
7 changes: 4 additions & 3 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,10 @@ class CMainParams : public CChainParams {
( 3002, uint256S("0x0000000000ff4dc9b88d334271f2102d86be0753f663a7d8210057fc12e64492"))
( 4881, uint256S("0x0000000001e49548b949ac89d60f4c7e8befaaed9018814e20594b63149a033e"))
( 5709, uint256S("0x00000000067bbd0d141efdb62a672b953ac25adb2c7e3880242c9848ef6d9cd4"))
( 6417, uint256S("0x000000000739df379cd3e3f4aa2bcd477af000acf760aa1cc76d56465ecc345f")),
1511388264, // * UNIX timestamp of last checkpoint block
8492, // * total number of transactions between genesis and last checkpoint
( 6417, uint256S("0x000000000739df379cd3e3f4aa2bcd477af000acf760aa1cc76d56465ecc345f"))
( 7874, uint256S("0x00000000015bc0e0cd71aee8a807729f81aa6e3587f664e124b2ae1ea0ef2de7")),
1511713645, // * UNIX timestamp of last checkpoint block
10291, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
2500 // * estimated number of transactions per day after checkpoint
};
Expand Down
2 changes: 1 addition & 1 deletion src/pow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead

// mainnet/regtest share a configuration
if (Params().NetworkIDString() == CBaseChainParams::MAIN || Params().NetworkIDString() == CBaseChainParams::REGTEST) {
if (pindexLast->nHeight + 1 >= 15200) retarget = DIFF_DGW;
if (pindexLast->nHeight + 1 >= 8000) retarget = DIFF_DGW;
else retarget = DIFF_BTC;
// testnet -- we want a lot of coins in existance early on
} else {
Expand Down

0 comments on commit 57fa475

Please sign in to comment.