Skip to content

Commit

Permalink
new param changes + new testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
zachchan105 committed Feb 11, 2024
1 parent f687773 commit f170188
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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, 2)
define(_CLIENT_VERSION_REVISION, 3)
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/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 = "testnet11";
strDataDir = "testnet12";
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/crypto/ethash/include/ethash/meowpow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ constexpr uint32_t num_regs = 16;
constexpr size_t num_lanes = 16;
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_size = 16 * 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 f170188

Please sign in to comment.