Changed the default value for 'sieveextensions' to 9 for mainnet.

A value of 9 seems to give slightly higher chains/day after commit 09466ac127.
master
Mikael Hirki 2013-09-11 21:15:55 +03:00
parent 09466ac127
commit f32680a8a9
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
extern std::vector<unsigned int> vPrimes;
static const unsigned int nMaxSieveExtensions = 20;
static const unsigned int nMinSieveExtensions = 0;
static const unsigned int nDefaultSieveExtensions = 6;
static const unsigned int nDefaultSieveExtensions = 9;
static const unsigned int nDefaultSieveExtensionsTestnet = 4;
extern unsigned int nSieveExtensions;
static const unsigned int nMaxSievePercentage = 100;