Move HardFork DB update to BlockchainDB::add_block()

Ensures the database is consistent.

Also simplifes blockchain_import in that verify mode off has less to
work around.
pull/95/head
warptangent 8 years ago
parent 3800875406
commit e02577f594
No known key found for this signature in database
GPG Key ID: 0E490BEBFBE4E92D

@ -130,6 +130,7 @@ uint64_t BlockchainDB::add_block( const block& blk
// DB's new height based on this added block is only incremented after this
// function returns, so height() here returns the new previous height.
uint64_t prev_height = height();
m_hardfork->add(blk, prev_height);
block_txn_stop();

@ -469,9 +469,6 @@ int import_from_file(FakeCore& simple_core, const std::string& import_file_path,
try
{
simple_core.add_block(b, block_size, cumulative_difficulty, coins_generated, txs);
#if !defined(BLOCKCHAIN_DB) || (BLOCKCHAIN_DB == DB_LMDB)
simple_core.m_hardfork->add(b, h-1);
#endif
}
catch (const std::exception& e)
{

@ -2692,9 +2692,6 @@ bool Blockchain::handle_block_to_main_chain(const block& bl, const crypto::hash&
TIME_MEASURE_FINISH(addblock);
// this will not fail since check succeeded above
m_hardfork->add(bl, new_height - 1);
// do this after updating the hard fork state since the size limit may change due to fork
update_next_cumulative_size_limit();

Loading…
Cancel
Save