mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
Update query-utils.cpp
This commit is contained in:
parent
172e404426
commit
81b7993d66
1 changed files with 5 additions and 1 deletions
|
@ -211,7 +211,11 @@ QueryInfo get_query_info(const lite_api::Function& f) {
|
|||
[&](const lite_api::liteServer_getShardBlockProof& q) { from_block_id(q.id_); },
|
||||
[&](const lite_api::liteServer_nonfinal_getCandidate& q) { /* t_simple */ },
|
||||
[&](const lite_api::liteServer_nonfinal_getValidatorGroups& q) { /* t_simple */ },
|
||||
[&](const lite_api::liteServer_getOutMsgQueueSizes& q) { /* t_simple */ },
|
||||
[&](const lite_api::liteServer_getOutMsgQueueSizes& q) {
|
||||
// This query is expected to be removed, as it is not fully compatible with separated liteservers
|
||||
/* t_simple */
|
||||
},
|
||||
[&](const lite_api::liteServer_getBlockOutMsgQueueSize& q) { from_block_id(q.id_); },
|
||||
[&](const auto&) { /* t_simple */ }));
|
||||
if (info.shard_id.workchain == masterchainId) {
|
||||
info.shard_id.shard = shardIdAll;
|
||||
|
|
Loading…
Reference in a new issue