Condense #if directives
This commit is contained in:
parent
8c1a1884b5
commit
a52496de77
1 changed files with 2 additions and 9 deletions
|
@ -206,18 +206,11 @@ void BlockchainExport::write_block(block& block)
|
||||||
{
|
{
|
||||||
#if SOURCE_DB == DB_MEMORY
|
#if SOURCE_DB == DB_MEMORY
|
||||||
size_t block_size = m_blockchain_storage->get_block_size(block_height);
|
size_t block_size = m_blockchain_storage->get_block_size(block_height);
|
||||||
#else
|
|
||||||
size_t block_size = m_blockchain_storage->get_db().get_block_size(block_height);
|
|
||||||
#endif
|
|
||||||
#if SOURCE_DB == DB_MEMORY
|
|
||||||
difficulty_type cumulative_difficulty = m_blockchain_storage->get_block_cumulative_difficulty(block_height);
|
difficulty_type cumulative_difficulty = m_blockchain_storage->get_block_cumulative_difficulty(block_height);
|
||||||
#else
|
|
||||||
difficulty_type cumulative_difficulty = m_blockchain_storage->get_db().get_block_cumulative_difficulty(block_height);
|
|
||||||
#endif
|
|
||||||
#if SOURCE_DB == DB_MEMORY
|
|
||||||
uint64_t coins_generated = m_blockchain_storage->get_block_coins_generated(block_height);
|
uint64_t coins_generated = m_blockchain_storage->get_block_coins_generated(block_height);
|
||||||
#else
|
#else
|
||||||
// TODO TEST to verify that this is the equivalent. make sure no off-by-one error with block height vs block number
|
size_t block_size = m_blockchain_storage->get_db().get_block_size(block_height);
|
||||||
|
difficulty_type cumulative_difficulty = m_blockchain_storage->get_db().get_block_cumulative_difficulty(block_height);
|
||||||
uint64_t coins_generated = m_blockchain_storage->get_db().get_block_already_generated_coins(block_height);
|
uint64_t coins_generated = m_blockchain_storage->get_db().get_block_already_generated_coins(block_height);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue