From 064ab123401814b755c776d8e53f132f6a151657 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 23 Mar 2019 16:20:08 +0000 Subject: functional_tests: add more blockchain related tests Related to emission, reorgs, getting tx data back, output distribution and histogram --- src/cryptonote_basic/miner.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/cryptonote_basic/miner.cpp') diff --git a/src/cryptonote_basic/miner.cpp b/src/cryptonote_basic/miner.cpp index ded6e346f..e6c6bddb6 100644 --- a/src/cryptonote_basic/miner.cpp +++ b/src/cryptonote_basic/miner.cpp @@ -576,7 +576,8 @@ namespace cryptonote //we lucky! ++m_config.current_extra_message_index; MGINFO_GREEN("Found block " << get_block_hash(b) << " at height " << height << " for difficulty: " << local_diff); - if(!m_phandler->handle_block_found(b)) + cryptonote::block_verification_context bvc; + if(!m_phandler->handle_block_found(b, bvc) || !bvc.m_added_to_main_chain) { --m_config.current_extra_message_index; }else -- cgit v1.2.3