Skip to content

Commit

Permalink
Fix getting min/max lt
Browse files Browse the repository at this point in the history
  • Loading branch information
SpyCheese committed Sep 4, 2024
1 parent 27ba46b commit be8763d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validator/impl/liteserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3511,8 +3511,8 @@ void LiteQuery::finish_getDispatchQueueInfo(StdSmcAddress after_addr, int max_ac
}
CHECK(dict_size > 0);
td::BitArray<64> min_lt, max_lt;
dict.extract_minmax_key(min_lt.bits(), 64, false, false);
dict.extract_minmax_key(max_lt.bits(), 64, true, false);
dict.get_minmax_key(min_lt.bits(), 64, false, false);
dict.get_minmax_key(max_lt.bits(), 64, true, false);
result.push_back(create_tl_object<lite_api::liteServer_accountDispatchQueueInfo>(addr, dict_size, min_lt.to_ulong(),
max_lt.to_ulong()));
}
Expand Down

0 comments on commit be8763d

Please sign in to comment.