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:
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 {
|
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;
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue