diff options
author | xiphon <xiphon@protonmail.com> | 2020-02-19 15:17:43 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2020-02-19 16:19:29 +0000 |
commit | fcb06f7a820f6a1efc6982a2f4b08571c4c28cf9 (patch) | |
tree | 8c18a3a7f6cca8c3a5e8e8307b0294559e5e1f5e /src/cryptonote_core/blockchain.h | |
parent | miner: use verification mode for low diff one block nonce searches (diff) | |
download | monero-fcb06f7a820f6a1efc6982a2f4b08571c4c28cf9.tar.xz |
cryptonote_core: skip block notify on blockchain switching rollback
Diffstat (limited to 'src/cryptonote_core/blockchain.h')
-rw-r--r-- | src/cryptonote_core/blockchain.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h index 0aecdcb57..cf1cf33c4 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -1207,10 +1207,11 @@ namespace cryptonote * * @param bl the block to be added * @param bvc metadata concerning the block's validity + * @param notify if set to true, sends new block notification on success * * @return true if the block was added successfully, otherwise false */ - bool handle_block_to_main_chain(const block& bl, block_verification_context& bvc); + bool handle_block_to_main_chain(const block& bl, block_verification_context& bvc, bool notify = true); /** * @brief validate and add a new block to the end of the blockchain @@ -1222,10 +1223,11 @@ namespace cryptonote * @param bl the block to be added * @param id the hash of the block * @param bvc metadata concerning the block's validity + * @param notify if set to true, sends new block notification on success * * @return true if the block was added successfully, otherwise false */ - bool handle_block_to_main_chain(const block& bl, const crypto::hash& id, block_verification_context& bvc); + bool handle_block_to_main_chain(const block& bl, const crypto::hash& id, block_verification_context& bvc, bool notify = true); /** * @brief validate and add a new block to an alternate blockchain |