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:
parent
cf97f48cd7
commit
cea5281ad3
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue