This commit is contained in:
warptangent 2015-12-13 21:42:19 -08:00
parent 3796941d8e
commit 9079a32c07
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D
2 changed files with 2 additions and 2 deletions

View file

@ -1010,7 +1010,7 @@ bool Blockchain::create_block_template(block& b, const account_public_address& m
b.timestamp = time(NULL);
diffic = get_difficulty_for_next_block();
CHECK_AND_ASSERT_MES(diffic, false, "difficulty owverhead.");
CHECK_AND_ASSERT_MES(diffic, false, "difficulty overhead.");
median_size = m_current_block_cumul_sz_limit / 2;
already_generated_coins = m_db->get_block_already_generated_coins(height - 1);

View file

@ -661,7 +661,7 @@ bool blockchain_storage::create_block_template(block& b, const account_public_ad
b.timestamp = time(NULL);
height = m_blocks.size();
diffic = get_difficulty_for_next_block();
CHECK_AND_ASSERT_MES(diffic, false, "difficulty owverhead.");
CHECK_AND_ASSERT_MES(diffic, false, "difficulty overhead.");
median_size = m_current_block_cumul_sz_limit / 2;
already_generated_coins = m_blocks.back().already_generated_coins;