diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-15 20:57:26 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-15 20:57:26 +0200 |
commit | 3ff67323b73ef193c56a025d4a682554adb40dea (patch) | |
tree | 1e8bee3096c02f037d3e7bcc4dfb6835432937d4 /src/common/command_line.cpp | |
parent | Merge pull request #2293 (diff) | |
parent | core: add --db-salvage command line flag (diff) | |
download | monero-3ff67323b73ef193c56a025d4a682554adb40dea.tar.xz |
Merge pull request #2288
c6e200a8 core: add --db-salvage command line flag (moneromooo-monero)
Diffstat (limited to 'src/common/command_line.cpp')
-rw-r--r-- | src/common/command_line.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/command_line.cpp b/src/common/command_line.cpp index 8c2796bbe..5f60bef89 100644 --- a/src/common/command_line.cpp +++ b/src/common/command_line.cpp @@ -107,6 +107,11 @@ namespace command_line , "Specify sync option, using format [safe|fast|fastest]:[sync|async]:[nblocks_per_sync]." , "fast:async:1000" }; + const arg_descriptor<bool> arg_db_salvage = { + "db-salvage" + , "Try to salvage a blockchain database if it seems corrupted" + , false + }; const command_line::arg_descriptor<uint64_t> arg_fast_block_sync = { "fast-block-sync" , "Sync up most of the way by using embedded, known block hashes." |