mirror of
https://git.wownero.com/wownero/wownero.git
synced 2025-01-08 19:48:52 +00:00
commit
1104a17246
@ -49,7 +49,7 @@
|
|||||||
#define CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT 60*60*2
|
#define CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT 60*60*2
|
||||||
#define CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE 4
|
#define CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE 4
|
||||||
|
|
||||||
#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 24
|
#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 12
|
||||||
#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 11
|
#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 11
|
||||||
#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW 60
|
#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW 60
|
||||||
|
|
||||||
@ -80,12 +80,12 @@
|
|||||||
|
|
||||||
#define DIFFICULTY_TARGET_V2 300
|
#define DIFFICULTY_TARGET_V2 300
|
||||||
#define DIFFICULTY_TARGET_V1 300
|
#define DIFFICULTY_TARGET_V1 300
|
||||||
#define DIFFICULTY_WINDOW_V3 288
|
#define DIFFICULTY_WINDOW_V3 144
|
||||||
#define DIFFICULTY_WINDOW_V2 60
|
#define DIFFICULTY_WINDOW_V2 60
|
||||||
#define DIFFICULTY_WINDOW 720 // blocks
|
#define DIFFICULTY_WINDOW 720 // blocks
|
||||||
#define DIFFICULTY_LAG_V2 6
|
#define DIFFICULTY_LAG_V2 3
|
||||||
#define DIFFICULTY_LAG 15 // !!!
|
#define DIFFICULTY_LAG 15 // !!!
|
||||||
#define DIFFICULTY_CUT_V2 24
|
#define DIFFICULTY_CUT_V2 12
|
||||||
#define DIFFICULTY_CUT 60 // timestamps to cut after sorting
|
#define DIFFICULTY_CUT 60 // timestamps to cut after sorting
|
||||||
#define DIFFICULTY_BLOCKS_COUNT_V3 DIFFICULTY_WINDOW_V3 + DIFFICULTY_LAG_V2
|
#define DIFFICULTY_BLOCKS_COUNT_V3 DIFFICULTY_WINDOW_V3 + DIFFICULTY_LAG_V2
|
||||||
#define DIFFICULTY_BLOCKS_COUNT_V2 DIFFICULTY_WINDOW_V2 + 1 // added +1 to make N=N
|
#define DIFFICULTY_BLOCKS_COUNT_V2 DIFFICULTY_WINDOW_V2 + 1 // added +1 to make N=N
|
||||||
|
@ -879,15 +879,15 @@ difficulty_type Blockchain::get_difficulty_for_next_block()
|
|||||||
difficulty_type diff = next_difficulty(timestamps, difficulties, target);
|
difficulty_type diff = next_difficulty(timestamps, difficulties, target);
|
||||||
|
|
||||||
if (version >= 11) {
|
if (version >= 11) {
|
||||||
difficulty_type diff = next_difficulty_v5(timestamps, difficulties, target);
|
diff = next_difficulty_v5(timestamps, difficulties, target);
|
||||||
} else if (version == 10) {
|
} else if (version == 10) {
|
||||||
difficulty_type diff = next_difficulty_v4(timestamps, difficulties, height);
|
diff = next_difficulty_v4(timestamps, difficulties, height);
|
||||||
} else if (version == 9) {
|
} else if (version == 9) {
|
||||||
difficulty_type diff = next_difficulty_v3(timestamps, difficulties);
|
diff = next_difficulty_v3(timestamps, difficulties);
|
||||||
} else if (version == 8) {
|
} else if (version == 8) {
|
||||||
difficulty_type diff = next_difficulty_v2(timestamps, difficulties, target);
|
diff = next_difficulty_v2(timestamps, difficulties, target);
|
||||||
} else {
|
} else {
|
||||||
difficulty_type diff = next_difficulty(timestamps, difficulties, target);
|
diff = next_difficulty(timestamps, difficulties, target);
|
||||||
}
|
}
|
||||||
|
|
||||||
CRITICAL_REGION_LOCAL1(m_difficulty_lock);
|
CRITICAL_REGION_LOCAL1(m_difficulty_lock);
|
||||||
@ -1443,7 +1443,7 @@ bool Blockchain::complete_timestamps_vector(uint64_t start_top_height, std::vect
|
|||||||
{
|
{
|
||||||
LOG_PRINT_L3("Blockchain::" << __func__);
|
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||||
uint8_t version = get_current_hard_fork_version();
|
uint8_t version = get_current_hard_fork_version();
|
||||||
size_t blockchain_timestamp_check_window = version >= 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 : version == 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 : BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW;
|
size_t blockchain_timestamp_check_window = version >= 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 : version == 10 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 : BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW;
|
||||||
if(timestamps.size() >= blockchain_timestamp_check_window)
|
if(timestamps.size() >= blockchain_timestamp_check_window)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
@ -3183,7 +3183,7 @@ bool Blockchain::check_block_timestamp(std::vector<uint64_t>& timestamps, const
|
|||||||
LOG_PRINT_L3("Blockchain::" << __func__);
|
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||||
median_ts = epee::misc_utils::median(timestamps);
|
median_ts = epee::misc_utils::median(timestamps);
|
||||||
uint8_t version = get_current_hard_fork_version();
|
uint8_t version = get_current_hard_fork_version();
|
||||||
size_t blockchain_timestamp_check_window = version >= 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 : version == 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 : BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW;
|
size_t blockchain_timestamp_check_window = version >= 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 : version == 10 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 : BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW;
|
||||||
if(b.timestamp < median_ts)
|
if(b.timestamp < median_ts)
|
||||||
{
|
{
|
||||||
MERROR_VER("Timestamp of block with id: " << get_block_hash(b) << ", " << b.timestamp << ", less than median of last " << blockchain_timestamp_check_window << " blocks, " << median_ts);
|
MERROR_VER("Timestamp of block with id: " << get_block_hash(b) << ", " << b.timestamp << ", less than median of last " << blockchain_timestamp_check_window << " blocks, " << median_ts);
|
||||||
@ -3205,7 +3205,7 @@ bool Blockchain::check_block_timestamp(const block& b, uint64_t& median_ts) cons
|
|||||||
LOG_PRINT_L3("Blockchain::" << __func__);
|
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||||
uint8_t version = get_current_hard_fork_version();
|
uint8_t version = get_current_hard_fork_version();
|
||||||
uint64_t cryptonote_block_future_time_limit = version >= 8 ? CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT_V2 : CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT;
|
uint64_t cryptonote_block_future_time_limit = version >= 8 ? CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT_V2 : CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT;
|
||||||
size_t blockchain_timestamp_check_window = version >= 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 : version == 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 : BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW;
|
size_t blockchain_timestamp_check_window = version >= 11 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V3 : version == 10 ? BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW_V2 : BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW;
|
||||||
|
|
||||||
if(b.timestamp > get_adjusted_time() + cryptonote_block_future_time_limit)
|
if(b.timestamp > get_adjusted_time() + cryptonote_block_future_time_limit)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user