diff options
author | whythat <whythat@protonmail.com> | 2018-01-21 17:29:55 +0200 |
---|---|---|
committer | whythat <whythat@protonmail.com> | 2018-02-16 22:32:01 +0200 |
commit | 05a12ccc2dc920f4a997e66e6965ae60c1a4c65e (patch) | |
tree | a694dfd20154294b7a12b9c0b99863c2049b86b6 /tests/core_proxy | |
parent | common: implement dependent option descriptor (diff) | |
download | monero-05a12ccc2dc920f4a997e66e6965ae60c1a4c65e.tar.xz |
options: remove testnet-* options
Diffstat (limited to 'tests/core_proxy')
-rw-r--r-- | tests/core_proxy/core_proxy.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/core_proxy/core_proxy.cpp b/tests/core_proxy/core_proxy.cpp index 8c9340318..f0a1eb5ce 100644 --- a/tests/core_proxy/core_proxy.cpp +++ b/tests/core_proxy/core_proxy.cpp @@ -80,8 +80,7 @@ int main(int argc, char* argv[]) po::options_description desc("Allowed options"); - // tools::get_default_data_dir() can't be called during static initialization - command_line::add_arg(desc, cryptonote::arg_data_dir, tools::get_default_data_dir()); + command_line::add_arg(desc, cryptonote::arg_data_dir); nodetool::node_server<cryptonote::t_cryptonote_protocol_handler<tests::proxy_core> >::init_options(desc); po::variables_map vm; |