diff options
author | Javier Smooth <iamjaviersmooth@gmail.com> | 2015-11-05 01:58:47 -0800 |
---|---|---|
committer | Javier Smooth <iamjaviersmooth@gmail.com> | 2015-11-13 00:30:45 -0800 |
commit | 4fea1a5fe7de41ebf0fb40be856d8a3f1775e7c6 (patch) | |
tree | b02df52888738745cc68df6674e6886f8d44f970 /src/cryptonote_config.h | |
parent | Merge pull request #481 (diff) | |
download | monero-4fea1a5fe7de41ebf0fb40be856d8a3f1775e7c6.tar.xz |
Adjust difficulty target (2 min) and full reward zone (60 kbytes) for block version 2
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r-- | src/cryptonote_config.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index 303e12b3b..94ead558f 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -51,11 +51,12 @@ // MONEY_SUPPLY - total number coins to be generated #define MONEY_SUPPLY ((uint64_t)(-1)) -#define EMISSION_SPEED_FACTOR (20) +#define EMISSION_SPEED_FACTOR_PER_MINUTE (20) #define FINAL_SUBSIDY_PER_MINUTE ((uint64_t)300000000000) // 3 * pow(10, 11) #define CRYPTONOTE_REWARD_BLOCKS_WINDOW 100 -#define CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE 20000 //size of block (bytes) after which reward for block calculated using block size +#define CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE 60000 //size of block (bytes) after which reward for block calculated using block size +#define CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V1 20000 //size of block (bytes) after which reward for block calculated using block size - before first fork #define CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE 600 #define CRYPTONOTE_DISPLAY_DECIMAL_POINT 12 // COIN - number of smallest units in one coin @@ -66,7 +67,8 @@ #define ORPHANED_BLOCKS_MAX_COUNT 100 -#define DIFFICULTY_TARGET 60 // seconds +#define DIFFICULTY_TARGET 120 // seconds +#define DIFFICULTY_TARGET_V1 60 // seconds - before first fork #define DIFFICULTY_WINDOW 720 // blocks #define DIFFICULTY_LAG 15 // !!! #define DIFFICULTY_CUT 60 // timestamps to cut after sorting |