mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Merge branch 'testnet' into accelerator
This commit is contained in:
commit
3ab7cc3c73
23 changed files with 355 additions and 81 deletions
|
@ -1271,6 +1271,28 @@ class ResetCollatorOptionsQuery : public Query {
|
|||
}
|
||||
};
|
||||
|
||||
class GetCollatorOptionsJsonQuery : public Query {
|
||||
public:
|
||||
GetCollatorOptionsJsonQuery(td::actor::ActorId<ValidatorEngineConsole> console, Tokenizer tokenizer)
|
||||
: Query(console, std::move(tokenizer)) {
|
||||
}
|
||||
td::Status run() override;
|
||||
td::Status send() override;
|
||||
td::Status receive(td::BufferSlice data) override;
|
||||
static std::string get_name() {
|
||||
return "getcollatoroptionsjson";
|
||||
}
|
||||
static std::string get_help() {
|
||||
return "getcollatoroptionsjson <filename>\tsave current collator options to file <filename>";
|
||||
}
|
||||
std::string name() const override {
|
||||
return get_name();
|
||||
}
|
||||
|
||||
private:
|
||||
std::string file_name_;
|
||||
};
|
||||
|
||||
class GetValidatorSessionsInfoQuery : public Query {
|
||||
public:
|
||||
GetValidatorSessionsInfoQuery(td::actor::ActorId<ValidatorEngineConsole> console, Tokenizer tokenizer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue