Skip to content

Commit

Permalink
Fixes max pow block count
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Sep 23, 2015
1 parent f90108e commit 76acfbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ uint32_t MAX_BLOCK_SIZE = 1000000;
// Maximal number of PoW blocks, after which their reward become null
// You can use std::numeric_limits< blockheight_t >::max( ) to disable this parameter

blockheight_t POW_MAX_BLOCK = 52596;
blockheight_t POW_MAX_BLOCK = (1 * YEAR) / (10 * MINUTE) + (1 * YEAR) / (1 * MINUTE);

// Initial network targets

Expand Down

0 comments on commit 76acfbc

Please sign in to comment.