1
0
Fork 0
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:
SpyCheese 2024-08-07 15:28:31 +03:00
commit 4a6479af57
11 changed files with 167 additions and 2 deletions

View file

@ -237,6 +237,7 @@ class ValidatorEngine : public td::actor::Actor {
bool started_ = false;
ton::BlockSeqno truncate_seqno_{0};
std::string session_logs_file_;
bool fast_state_serializer_enabled_ = false;
bool not_all_shards_ = false;
std::set<ton::CatchainSeqno> unsafe_catchains_;
@ -317,6 +318,9 @@ class ValidatorEngine : public td::actor::Actor {
void set_catchain_max_block_delay(double value) {
catchain_max_block_delay_ = value;
}
void set_fast_state_serializer_enabled(bool value) {
fast_state_serializer_enabled_ = value;
}
void set_not_all_shards() {
not_all_shards_ = true;
}