From 4c73053a9f61d3ecc06918b90350d845742f0f28 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Sun, 23 Feb 2020 07:45:04 +0100 Subject: [PATCH] added initialization flag --- src/wallet/plain_wallet_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/plain_wallet_api.cpp b/src/wallet/plain_wallet_api.cpp index a4a681b3..114f9604 100644 --- a/src/wallet/plain_wallet_api.cpp +++ b/src/wallet/plain_wallet_api.cpp @@ -99,7 +99,7 @@ namespace plain_wallet std::string wallet_folder = get_wallets_folder(); boost::system::error_code ec; boost::filesystem::create_directories(wallet_folder, ec); - + initialized = true; return API_RETURN_CODE_OK; }