Skip to content

Commit

Permalink
Work around current run-time fail due to allocator wraparound.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Aug 12, 2024
1 parent 85c957d commit e146149
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/protocols/protocol_block_in_31800.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e146149

Please sign in to comment.