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.
This commit is contained in:
warptangent 2016-02-08 08:09:07 -08:00
parent 3800875406
commit e02577f594
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D
3 changed files with 1 additions and 6 deletions

View file

@ -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();