Skip to content

Commit

Permalink
Fix compilation of nano_wallet on macosx
Browse files Browse the repository at this point in the history
  • Loading branch information
dsiganos committed Nov 5, 2023
1 parent 0377c4f commit 3d75e3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/nano_wallet/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ int run_wallet (QApplication & application, int argc, char * const * argv, std::
}

auto network = node->network_params.network.get_current_network_as_string ();
rpc_process = std::make_unique<boost::process::child> (config.rpc.child_process.rpc_path, "--daemon", "--data_path", data_path, "--network", network);
rpc_process = std::make_unique<boost::process::child> (config.rpc.child_process.rpc_path, "--daemon", "--data_path", data_path.string(), "--network", network);
}
}
QObject::connect (&application, &QApplication::aboutToQuit, [&] () {
Expand Down

0 comments on commit 3d75e3c

Please sign in to comment.