1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-12 19:22:37 +00:00

increased validator version

This commit is contained in:
ton 2020-04-07 01:27:34 +04:00
parent cf97f48cd7
commit cea5281ad3
2 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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: