mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Exporting and importing candidates using validator-engine-console; lite mode for validator group
This commit is contained in:
parent
625516c568
commit
415ace3da9
16 changed files with 410 additions and 5 deletions
|
@ -430,6 +430,19 @@ class ValidatorManagerImpl : public ValidatorManager {
|
|||
td::Promise<tl_object_ptr<ton_api::engine_validator_validatorSessionsInfo>> promise) override {
|
||||
UNREACHABLE();
|
||||
}
|
||||
void generate_block_candidate(BlockId block_id, td::Promise<BlockCandidate> promise) override {
|
||||
UNREACHABLE();
|
||||
}
|
||||
void get_required_block_candidates(td::Promise<std::vector<BlockId>> promise) override {
|
||||
UNREACHABLE();
|
||||
}
|
||||
void import_block_candidate(BlockCandidate candidate, td::Promise<td::Unit> promise) override {
|
||||
UNREACHABLE();
|
||||
}
|
||||
void wait_block_candidate(BlockId block_id, td::Timestamp timeout, td::Promise<BlockCandidate> promise) override {
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
||||
|
||||
private:
|
||||
td::Ref<ValidatorManagerOptions> opts_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue