diff --git a/validator/impl/collator-impl.h b/validator/impl/collator-impl.h index 12f46188..214cdf28 100644 --- a/validator/impl/collator-impl.h +++ b/validator/impl/collator-impl.h @@ -40,10 +40,10 @@ using td::Ref; class Collator final : public td::actor::Actor { static constexpr int supported_version() { - return 1; + return 2; } static constexpr long long supported_capabilities() { - return ton::capCreateStatsEnabled | ton::capBounceMsgBody | ton::capReportVersion; + return ton::capCreateStatsEnabled | ton::capBounceMsgBody | ton::capReportVersion | ton::capShortDequeue; } using LtCellRef = block::LtCellRef; using NewOutMsg = block::NewOutMsg; diff --git a/validator/impl/validate-query.hpp b/validator/impl/validate-query.hpp index f1c988d2..c0d9c171 100644 --- a/validator/impl/validate-query.hpp +++ b/validator/impl/validate-query.hpp @@ -108,10 +108,10 @@ inline ErrorCtxSet ErrorCtx::set_guard(std::vector str_list) { class ValidateQuery : public td::actor::Actor { static constexpr int supported_version() { - return 1; + return 2; } static constexpr long long supported_capabilities() { - return ton::capCreateStatsEnabled | ton::capBounceMsgBody | ton::capReportVersion; + return ton::capCreateStatsEnabled | ton::capBounceMsgBody | ton::capReportVersion | ton::capShortDequeue; } public: