Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10298 from EOSIO/no_default_reversibledb
Browse files Browse the repository at this point in the history
don't specify default values for reversible blocks db configs
  • Loading branch information
spoonincode authored Apr 27, 2021
2 parents 237f7d6 + 049f5f1 commit 049b601
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/chain_plugin/chain_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,9 @@ void chain_plugin::set_program_options(options_description& cli, options_descrip
("persistent-storage-mbytes-snapshot-batch", bpo::value<uint32_t>()->default_value(config::default_persistent_storage_mbytes_batch),
"Rocksdb batch size threshold before writing read in snapshot data to database.")

("reversible-blocks-db-size-mb", bpo::value<uint64_t>()->default_value(0),
("reversible-blocks-db-size-mb", bpo::value<uint64_t>(),
"(DEPRECATED: no longer used) Maximum size (in MiB) of the reversible blocks database")
("reversible-blocks-db-guard-size-mb", bpo::value<uint64_t>()->default_value(0),
("reversible-blocks-db-guard-size-mb", bpo::value<uint64_t>(),
"(DEPRECATED: no longer used) Safely shut down node when free space remaining in the reverseible blocks database drops below this size (in MiB).")
("signature-cpu-billable-pct", bpo::value<uint32_t>()->default_value(config::default_sig_cpu_bill_pct / config::percent_1),
"Percentage of actual signature recovery cpu to bill. Whole number percentages, e.g. 50 for 50%")
Expand Down

0 comments on commit 049b601

Please sign in to comment.