First off, this is an awesome coin! I'm having fun trying to find blocks (found 2 so far!)
Question,
Is there any way to tweak the sievesize and sieveprimes from the command line or the config file?
And if there is, what would be some good values to test ?
thanks
You can use the setgenerate rpc call:
setgenerate generate ( genproclimit ) ( sievesize ) ( sieveprimes ) ( shift )
Set 'generate' true or false to turn generation on or off.
Generation is limited to 'genproclimit' processors, -1 is unlimited.
See the getgenerate call for the current setting.
Arguments:
1. generate (boolean, required) Set to true to turn on generation, off to turn off.
2. genproclimit (numeric, optional) Set the processor limit for when generation is on. Can be -1 for unlimited.
Note: in -regtest mode, genproclimit controls how many blocks are generated immediately.
3. sievesize (numeric, optional) Sets the size of the prime sieve.
4. sieveprimes (numeric, optional) Sets the amount of primes used in the sieve.
5. shift (numeric, optional) Sets the header shift.
Note: sieve size can only have 2^shift size.
Note: shift also should be in range [14, 512]
Shift, should be the most sensitive parameter, because it controls the bit size of the primes.
Second would be sieve primes.