aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2017-08-20 13:37:19 +0100
committerHoward Chu <hyc@symas.com>2017-08-20 13:57:36 +0100
commit80344740bdd3c61c39a8bcac67a4858549eab505 (patch)
tree62155f343bd3367b1085e81569bf91d9d7852428 /src/common
parentDB cleanup (diff)
downloadmonero-80344740bdd3c61c39a8bcac67a4858549eab505.tar.xz
More DB support cleanup
Hide DB types from db_types.h - no reason to recompile dependencies when DB types change. Also remove lingering in-memory DB references, they've been obsolete since 9e82b694da120708652871b55f639d1ef306a7ec
Diffstat (limited to 'src/common')
-rw-r--r--src/common/command_line.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/command_line.cpp b/src/common/command_line.cpp
index 925d8ff3b..ad66b2009 100644
--- a/src/common/command_line.cpp
+++ b/src/common/command_line.cpp
@@ -96,7 +96,7 @@ namespace command_line
, "checkpoints from DNS server will be enforced"
, false
};
- std::string arg_db_type_description = "Specify database type, available: " + boost::algorithm::join(cryptonote::blockchain_db_types, ", ");
+ std::string arg_db_type_description = "Specify database type, available: " + cryptonote::blockchain_db_types(", ");
const command_line::arg_descriptor<std::string> arg_db_type = {
"db-type"
, arg_db_type_description.c_str()