mirror of
https://github.com/monero-project/monero.git
synced 2025-09-19 07:24:40 -04:00
Fix tests building -- function signatures changed
This commit is contained in:
parent
db53e1956a
commit
76289d0e3b
4 changed files with 7 additions and 3 deletions
|
@ -34,6 +34,7 @@
|
|||
#include "misc_log_ex.h"
|
||||
#include <stdexcept>
|
||||
#include <boost/program_options.hpp>
|
||||
#include "daemon/command_line_args.h"
|
||||
|
||||
namespace daemonize
|
||||
{
|
||||
|
|
|
@ -60,6 +60,7 @@ int main(int argc, char const * argv[])
|
|||
po::positional_options_description positional_options;
|
||||
{
|
||||
bf::path default_data_dir = daemonizer::get_default_data_dir();
|
||||
bf::path default_testnet_data_dir = {default_data_dir / "testnet"};
|
||||
|
||||
// Misc Options
|
||||
|
||||
|
@ -67,6 +68,7 @@ int main(int argc, char const * argv[])
|
|||
command_line::add_arg(visible_options, command_line::arg_version);
|
||||
command_line::add_arg(visible_options, daemon_args::arg_os_version);
|
||||
command_line::add_arg(visible_options, command_line::arg_data_dir, default_data_dir.string());
|
||||
command_line::add_arg(visible_options, command_line::arg_testnet_data_dir, default_testnet_data_dir.string());
|
||||
bf::path default_conf = default_data_dir / std::string(CRYPTONOTE_NAME ".conf");
|
||||
command_line::add_arg(visible_options, daemon_args::arg_config_file, default_conf.string());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue