Skip to content

Commit

Permalink
increased validator version
Browse files Browse the repository at this point in the history
  • Loading branch information
ton committed Apr 6, 2020
1 parent cf97f48 commit cea5281
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions validator/impl/collator-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions validator/impl/validate-query.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ inline ErrorCtxSet ErrorCtx::set_guard(std::vector<std::string> 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:
Expand Down

0 comments on commit cea5281

Please sign in to comment.