From c7533010bd7e5c80e5e369007e8ddd5c3bf28bf5 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Fri, 17 Nov 2023 12:20:30 +0000 Subject: [PATCH] fixed problem with wallet api --- src/wallet/plain_wallet_api.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wallet/plain_wallet_api.cpp b/src/wallet/plain_wallet_api.cpp index 505d540b..3a9a1552 100644 --- a/src/wallet/plain_wallet_api.cpp +++ b/src/wallet/plain_wallet_api.cpp @@ -96,7 +96,9 @@ namespace plain_wallet std::string get_wallets_folder() { -#ifdef WIN32 +#ifdef CAKEWALLET + std::string path = ""; +#elif WIN32 std::string path = get_bundle_working_dir() + "/" + WALLETS_FOLDER_NAME + "/"; #else std::string path = get_bundle_working_dir() + "/" + WALLETS_FOLDER_NAME + "/";