aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorMiguel Herranz <miguel@ipglider.org>2017-01-10 11:49:45 +0100
committerMiguel Herranz <miguel@ipglider.org>2017-01-10 11:49:45 +0100
commitaff28178e631345065c21e238f469459750c542d (patch)
treedbb30ddccfa61bb0ec022c3e1816842bb31a75fb /src/common
parentRemove berkeley from db_type initialization (diff)
downloadmonero-aff28178e631345065c21e238f469459750c542d.tar.xz
Remove db-auto-remove-logs
Diffstat (limited to 'src/common')
-rw-r--r--src/common/command_line.cpp5
-rw-r--r--src/common/command_line.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/common/command_line.cpp b/src/common/command_line.cpp
index a432062a0..d95859256 100644
--- a/src/common/command_line.cpp
+++ b/src/common/command_line.cpp
@@ -111,11 +111,6 @@ namespace command_line
, "Max number of threads to use when preparing block hashes in groups."
, 4
};
- const command_line::arg_descriptor<uint64_t> arg_db_auto_remove_logs = {
- "db-auto-remove-logs"
- , "For BerkeleyDB only. Remove transactions logs automatically."
- , 1
- };
const command_line::arg_descriptor<uint64_t> arg_show_time_stats = {
"show-time-stats"
, "Show time-stats when processing blocks/txs and disk synchronization."
diff --git a/src/common/command_line.h b/src/common/command_line.h
index 98c115bb7..3f0919e99 100644
--- a/src/common/command_line.h
+++ b/src/common/command_line.h
@@ -217,7 +217,6 @@ namespace command_line
extern const arg_descriptor<std::string> arg_db_sync_mode;
extern const arg_descriptor<uint64_t> arg_fast_block_sync;
extern const arg_descriptor<uint64_t> arg_prep_blocks_threads;
- extern const arg_descriptor<uint64_t> arg_db_auto_remove_logs;
extern const arg_descriptor<uint64_t> arg_show_time_stats;
extern const arg_descriptor<size_t> arg_block_sync_size;
}