diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-02-17 11:51:57 +0100 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-02-17 11:51:57 +0100 |
commit | 6198c816b1749dbe55a74084ea65694d8a391046 (patch) | |
tree | 2fb5dc0857792bea59242950c70f76a006fefee5 /tests | |
parent | Merge pull request #3191 (diff) | |
parent | options: add testnet option dependencies (diff) | |
download | monero-6198c816b1749dbe55a74084ea65694d8a391046.tar.xz |
Merge pull request #3170
b3b2d4d2 options: add testnet option dependencies (whythat)
c5f55bb4 common: implement dynamic option dependencies mechanism (whythat)
05a12ccc options: remove testnet-* options (whythat)
c33cb60e common: implement dependent option descriptor (whythat)
Diffstat (limited to 'tests')
-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; |