mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Merge aa2e211f97
into cf50b4b5da
This commit is contained in:
commit
0481f61fb4
7 changed files with 39 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue