Skip to content

Commit

Permalink
old dev params + activation @ 5pm
Browse files Browse the repository at this point in the history
  • Loading branch information
zachchan105 committed Feb 8, 2024
1 parent dcff3e3 commit a28fe32
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,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_REVISION, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
Expand Down
2 changes: 1 addition & 1 deletion src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ class CTestNetParams : public CChainParams {
nKAAAWWWPOWActivationTime = 1661833868; //Wed Mar 25 2020 18:00:00 UTC
nKAWPOWActivationTime = nKAAAWWWPOWActivationTime;

nMEOWWWWPOWActivationTime = 1707085189; // Feb 4, 2024
nMEOWWWWPOWActivationTime = 1707354000; // Feb 4, 2024
nMEOWPOWActivationTime = nMEOWWWWPOWActivationTime;
/** MEWC End **/
}
Expand Down
2 changes: 1 addition & 1 deletion src/chainparamsbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class CBaseTestNetParams : public CBaseChainParams
CBaseTestNetParams()
{
nRPCPort = 18766;
strDataDir = "testnet9";
strDataDir = "testnet10";
}
};

Expand Down
8 changes: 4 additions & 4 deletions src/crypto/ethash/include/ethash/meowpow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ using namespace ethash; // Include ethash namespace.
/// The MeowPoW algorithm implemented as a twist of ProgPow
constexpr auto revision = "0.9.4";

constexpr int period_length = 3;
constexpr int period_length = 6;
constexpr uint32_t num_regs = 16;
constexpr size_t num_lanes = 8;
constexpr int num_cache_accesses = 7;
constexpr int num_math_operations = 11;
constexpr size_t l1_cache_size = 12 * 1024;
constexpr int num_cache_accesses = 6;
constexpr int num_math_operations = 9;
constexpr size_t l1_cache_size = 8 * 1024;
constexpr size_t l1_cache_num_items = l1_cache_size / sizeof(uint32_t);

result hash(const epoch_context& context, int block_number, const hash256& header_hash,
Expand Down

0 comments on commit a28fe32

Please sign in to comment.