diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-26 23:43:09 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-26 23:43:09 +0200 |
commit | ff0afc196e2dbbea2c6296f93314267045948362 (patch) | |
tree | 253489e690565ff9c63d0fe5d09d0541a9ec3714 /src/common | |
parent | Merge pull request #2353 (diff) | |
parent | Cleanup test impact of moving blockchain_db_types() (diff) | |
download | monero-ff0afc196e2dbbea2c6296f93314267045948362.tar.xz |
Merge pull request #2313
3dd34a49 Cleanup test impact of moving blockchain_db_types() (Howard Chu)
80344740 More DB support cleanup (Howard Chu)
4c7f8ac0 DB cleanup (Howard Chu)
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/command_line.cpp | 2 |
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() |