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

Comment out excessive checks of outbound messages queue

This commit is contained in:
EmelyanenkoK 2023-04-27 14:43:37 +03:00
parent 5606418234
commit dd8658c4db
2 changed files with 4 additions and 2 deletions

View file

@ -5540,9 +5540,10 @@ bool ValidateQuery::try_validate() {
if (!check_in_queue()) {
return reject_query("cannot check inbound message queues");
}
if (!check_delivered_dequeued()) {
// Excessive check: validity of message in queue is checked elsewhere
/*if (!check_delivered_dequeued()) {
return reject_query("cannot check delivery status of all outbound messages");
}
}*/
if (!check_transactions()) {
return reject_query("invalid collection of account transactions in ShardAccountBlocks");
}