Update config path on macos/boost 1.69 (#1985)
Co-authored-by: Wesley Shillingford <wezrule@hotmail.com>
This commit is contained in:
parent
e822707d90
commit
77c166b13b
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ void nano_daemon::daemon::run (boost::filesystem::path const & data_path, nano::
|
|||
#if BOOST_PROCESS_SUPPORTED
|
||||
rpc_process = std::make_unique<boost::process::child> (config.rpc.child_process.rpc_path, "--daemon", "--data_path", data_path, "--network", network);
|
||||
#else
|
||||
auto rpc_exe_command = boost::str (boost::format ("%1% --daemon --data_path=%2% --network=%3%") % config.rpc.rpc_path % data_path % network);
|
||||
auto rpc_exe_command = boost::str (boost::format ("%1% --daemon --data_path=%2% --network=%3%") % config.rpc.child_process.rpc_path % data_path % network);
|
||||
// clang-format off
|
||||
rpc_process_thread = std::make_unique<std::thread> ([rpc_exe_command, &logger = node->logger]() {
|
||||
nano::thread_role::set (nano::thread_role::name::rpc_process_container);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue