From e146149d787200d931c58535bb86128b7401e2ab Mon Sep 17 00:00:00 2001 From: evoskuil Date: Mon, 12 Aug 2024 00:33:14 -0400 Subject: [PATCH] Work around current run-time fail due to allocator wraparound. --- src/protocols/protocol_block_in_31800.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/protocols/protocol_block_in_31800.cpp b/src/protocols/protocol_block_in_31800.cpp index fb600b09..373b5308 100644 --- a/src/protocols/protocol_block_in_31800.cpp +++ b/src/protocols/protocol_block_in_31800.cpp @@ -370,9 +370,9 @@ bool protocol_block_in_31800::handle_receive_block(const code& ec, LOGP("Downloaded block [" << encode_hash(hash) << ":" << height << "] from [" << authority() << "]."); - populate(block, link, height, BIND(complete, _1, block, height)); - ////notify(ec, chase::checked, height); - ////fire(events::block_archived, height); + ////populate(block, link, height, BIND(complete, _1, block, height)); + notify(ec, chase::checked, height); + fire(events::block_archived, height); count(size); map_->erase(it);