1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Fix validating inbound msg queues

This commit is contained in:
SpyCheese 2023-07-21 19:29:29 +03:00
parent 869c6fe675
commit 32b3fe748a
3 changed files with 14 additions and 34 deletions

View file

@ -210,6 +210,7 @@ class ValidateQuery : public td::actor::Actor {
std::map<BlockSeqno, Ref<MasterchainStateQ>> aux_mc_states_;
block::ShardState ps_, ns_;
bool processed_upto_updated_{false};
std::unique_ptr<vm::AugmentedDictionary> sibling_out_msg_queue_;
std::shared_ptr<block::MsgProcessedUptoCollection> sibling_processed_upto_;
@ -223,7 +224,6 @@ class ValidateQuery : public td::actor::Actor {
ton::LogicalTime proc_lt_{0}, claimed_proc_lt_{0}, min_enq_lt_{~0ULL};
ton::Bits256 proc_hash_ = ton::Bits256::zero(), claimed_proc_hash_, min_enq_hash_;
bool inbound_queues_empty_{false};
std::vector<std::tuple<Bits256, LogicalTime, LogicalTime>> msg_proc_lt_;