Skip to content

Commit

Permalink
Enable new difficulty adjustment filter, as of block 28336.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Friedenbach committed Sep 30, 2013
1 parent a55f157 commit ce8839a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ static const int COINBASE_MATURITY = 100;
/** Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp. */
static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC
/** FIR difficulty filter parameters */
static const int DIFF_FILTER_THRESHOLD_TESTNET = std::numeric_limits<int>::max();
static const int DIFF_FILTER_THRESHOLD = std::numeric_limits<int>::max();
static const int DIFF_FILTER_THRESHOLD_TESTNET = 2016;
static const int DIFF_FILTER_THRESHOLD = 28336;
/** Maximum number of script-checking threads allowed */
static const int MAX_SCRIPTCHECK_THREADS = 16;
#ifdef USE_UPNP
Expand Down

0 comments on commit ce8839a

Please sign in to comment.