diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-28 16:06:43 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-14 17:06:19 +0000 |
commit | 082db75f28b717a01349026df42c4852a10bb932 (patch) | |
tree | 35b11f34aaeb79ff39fb61e599a74ab333e16825 /tests/unit_tests/main.cpp | |
parent | Merge pull request #2756 (diff) | |
download | monero-082db75f28b717a01349026df42c4852a10bb932.tar.xz |
move cryptonote command line options to cryptonote_core
Those have no reason to be in a generic module
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/main.cpp b/tests/unit_tests/main.cpp index 76f2b2749..86e7bcef3 100644 --- a/tests/unit_tests/main.cpp +++ b/tests/unit_tests/main.cpp @@ -53,7 +53,7 @@ int main(int argc, char** argv) po::options_description desc_options("Command line options"); const command_line::arg_descriptor<std::string> arg_data_dir = {"data-dir", "Data files directory", "", true}; - command_line::add_arg(desc_options, command_line::arg_data_dir, ""); + command_line::add_arg(desc_options, arg_data_dir, ""); po::variables_map vm; bool r = command_line::handle_error_helper(desc_options, [&]() |