Merge pull request #109 from wowario/lwma
difficulty: remove testnet variables
This commit is contained in:
commit
73b17fcb62
|
@ -256,14 +256,10 @@ namespace cryptonote {
|
||||||
|
|
||||||
assert(timestamps.size() == cumulative_difficulties.size() && timestamps.size() <= static_cast<uint64_t>(N+1) );
|
assert(timestamps.size() == cumulative_difficulties.size() && timestamps.size() <= static_cast<uint64_t>(N+1) );
|
||||||
|
|
||||||
if ( cryptonote::MAINNET && height <= DIFFICULTY_HEIGHT ){
|
if ( height <= DIFFICULTY_HEIGHT ){
|
||||||
return static_cast<uint64_t>(DIFFICULTY_GUESS);
|
return static_cast<uint64_t>(DIFFICULTY_GUESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( cryptonote::TESTNET && height <= DIFFICULTY_TESTNET_HEIGHT ){
|
|
||||||
return static_cast<uint64_t>(DIFFICULTY_TESTNET_GUESS);
|
|
||||||
}
|
|
||||||
|
|
||||||
for ( int64_t i = 1; i <= N; i++ ) {
|
for ( int64_t i = 1; i <= N; i++ ) {
|
||||||
ST = static_cast<int64_t>(timestamps[i]) - static_cast<int64_t>(timestamps[i-1]);
|
ST = static_cast<int64_t>(timestamps[i]) - static_cast<int64_t>(timestamps[i-1]);
|
||||||
ST = std::max(-4*T, std::min(ST, 6*T));
|
ST = std::max(-4*T, std::min(ST, 6*T));
|
||||||
|
@ -281,12 +277,9 @@ namespace cryptonote {
|
||||||
next_D = std::max(next_D,(prev_D*108)/100);
|
next_D = std::max(next_D,(prev_D*108)/100);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( cryptonote::MAINNET && next_D < DIFFICULTY_MINIMUM ) {
|
if ( next_D < DIFFICULTY_MINIMUM ) {
|
||||||
return static_cast<uint64_t>(DIFFICULTY_MINIMUM);
|
return static_cast<uint64_t>(DIFFICULTY_MINIMUM);
|
||||||
}
|
}
|
||||||
else if ( cryptonote::TESTNET && next_D < DIFFICULTY_TESTNET_MINIMUM ) {
|
|
||||||
return static_cast<uint64_t>(DIFFICULTY_TESTNET_MINIMUM);
|
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
return static_cast<uint64_t>(next_D);
|
return static_cast<uint64_t>(next_D);
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,9 +84,6 @@
|
||||||
#define DIFFICULTY_HEIGHT 53666 // v9 fork height
|
#define DIFFICULTY_HEIGHT 53666 // v9 fork height
|
||||||
#define DIFFICULTY_GUESS 40000000 // difficulty at fork 40m
|
#define DIFFICULTY_GUESS 40000000 // difficulty at fork 40m
|
||||||
#define DIFFICULTY_MINIMUM 25000000 // minimum difficulty set to 25m
|
#define DIFFICULTY_MINIMUM 25000000 // minimum difficulty set to 25m
|
||||||
#define DIFFICULTY_TESTNET_HEIGHT 100
|
|
||||||
#define DIFFICULTY_TESTNET_GUESS 5069
|
|
||||||
#define DIFFICULTY_TESTNET_MINIMUM 4069
|
|
||||||
|
|
||||||
#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_SECONDS_V1 DIFFICULTY_TARGET_V1 * CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS
|
#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_SECONDS_V1 DIFFICULTY_TARGET_V1 * CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS
|
||||||
#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_SECONDS_V2 DIFFICULTY_TARGET_V2 * CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS
|
#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_SECONDS_V2 DIFFICULTY_TARGET_V2 * CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS
|
||||||
|
|
Loading…
Reference in New Issue