From 5cca995705f452b12c88ec330ef1c6645945ee86 Mon Sep 17 00:00:00 2001 From: Dimitrios Siganos Date: Sun, 5 Nov 2023 12:55:16 +0000 Subject: [PATCH] Fix compilation of nano_wallet on macosx --- 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 da45fff820..440e5ddf80 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, [&] () {