1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +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 { class Collator final : public td::actor::Actor {
static constexpr int supported_version() { static constexpr int supported_version() {
return 1; return 2;
} }
static constexpr long long supported_capabilities() { 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 LtCellRef = block::LtCellRef;
using NewOutMsg = block::NewOutMsg; 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 { class ValidateQuery : public td::actor::Actor {
static constexpr int supported_version() { static constexpr int supported_version() {
return 1; return 2;
} }
static constexpr long long supported_capabilities() { static constexpr long long supported_capabilities() {
return ton::capCreateStatsEnabled | ton::capBounceMsgBody | ton::capReportVersion; return ton::capCreateStatsEnabled | ton::capBounceMsgBody | ton::capReportVersion | ton::capShortDequeue;
} }
public: public: