1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00
This commit is contained in:
Marat 2025-03-05 20:12:45 +01:00 committed by GitHub
commit 0481f61fb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 39 additions and 1 deletions

View file

@ -218,6 +218,7 @@ class ValidatorEngine : public td::actor::Actor {
bool celldb_direct_io_ = false;
bool celldb_preload_all_ = false;
bool celldb_in_memory_ = false;
bool celldb_disable_bloom_filter_ = false;
td::optional<double> catchain_max_block_delay_, catchain_max_block_delay_slow_;
bool read_config_ = false;
bool started_keyring_ = false;
@ -311,6 +312,9 @@ class ValidatorEngine : public td::actor::Actor {
void set_celldb_in_memory(bool value) {
celldb_in_memory_ = value;
}
void set_celldb_disable_bloom_filter(bool value) {
celldb_disable_bloom_filter_ = value;
}
void set_catchain_max_block_delay(double value) {
catchain_max_block_delay_ = value;
}