From 5ee6f03742f7c14059da6139a9923c443668f4b0 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Tue, 1 Jan 2019 18:26:46 +0000 Subject: blockchain: fix wrong hf version when popping multiple blocks Since we keep track of the hf version in the db, we pick it up from there instead of doing the full reorg call, which is quite expensive --- src/cryptonote_basic/hardfork.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/cryptonote_basic/hardfork.h') diff --git a/src/cryptonote_basic/hardfork.h b/src/cryptonote_basic/hardfork.h index a63a66976..a3fc25dfa 100644 --- a/src/cryptonote_basic/hardfork.h +++ b/src/cryptonote_basic/hardfork.h @@ -149,6 +149,16 @@ namespace cryptonote bool reorganize_from_block_height(uint64_t height); bool reorganize_from_chain_height(uint64_t height); + /** + * @brief called when one or more blocks are popped from the blockchain + * + * The current fork will be updated by looking up the db, + * which is much cheaper than recomputing everything + * + * @param new_chain_height the height of the chain after popping + */ + void on_block_popped(uint64_t new_chain_height); + /** * @brief returns current state at the given time * -- cgit v1.2.3