Skip to content

Commit

Permalink
remove hardfork check
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-hermes committed Jul 4, 2024
1 parent 3599f4a commit 3db1a08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validator/impl/collator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void Collator::start_up() {
LOG(WARNING) << "generating a hardfork block";
}
// 4. load external messages
if (!is_hardfork_) {
//if (!is_hardfork_) {
LOG(DEBUG) << "sending get_external_messages() query to Manager";
++pending;
td::actor::send_closure_later(manager, &ValidatorManager::get_external_messages, shard_,
Expand All @@ -261,7 +261,7 @@ void Collator::start_up() {
td::actor::send_closure_later(
std::move(self), &Collator::after_get_external_messages, std::move(res));
});
}
//}
if (is_masterchain() && !is_hardfork_) {
// 5. load shard block info messages
LOG(DEBUG) << "sending get_shard_blocks() query to Manager";
Expand Down

0 comments on commit 3db1a08

Please sign in to comment.