From 5bb885a2d1a78a2f3700098017fc947a1aa363d2 Mon Sep 17 00:00:00 2001 From: Dimitrios Siganos Date: Sun, 5 Nov 2023 15:36:54 +0000 Subject: [PATCH] Fix compilation of nano_wallet on macosx (#4327) --- nano/nano_wallet/entry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano/nano_wallet/entry.cpp b/nano/nano_wallet/entry.cpp index da45fff82..440e5ddf8 100644 --- a/nano/nano_wallet/entry.cpp +++ b/nano/nano_wallet/entry.cpp @@ -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 (config.rpc.child_process.rpc_path, "--daemon", "--data_path", data_path, "--network", network); + rpc_process = std::make_unique (config.rpc.child_process.rpc_path, "--daemon", "--data_path", data_path.string (), "--network", network); } } QObject::connect (&application, &QApplication::aboutToQuit, [&] () {