From 79902a2a165891911f2c3c38f2131f2e2ff2c41f Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 11 Feb 2020 23:51:35 +0100 Subject: [PATCH] surgery continued: cut headers --- src/wallet/wallets_manager.cpp | 8 +++++--- src/wallet/wallets_manager.h | 12 +++++++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/wallet/wallets_manager.cpp b/src/wallet/wallets_manager.cpp index a5d8f0bb..4b318f7d 100644 --- a/src/wallet/wallets_manager.cpp +++ b/src/wallet/wallets_manager.cpp @@ -6,10 +6,12 @@ #include "wallets_manager.h" #include "currency_core/alias_helper.h" -#include "core_fast_rpc_proxy.h" -#include "string_coding.h" -#include "currency_core/core_tools.h" +#ifndef IOS_BUILD + #include "core_fast_rpc_proxy.h" + #include "currency_core/core_tools.h" +#endif #include "common/callstack_helper.h" +#include "string_coding.h" #include "wallet_helpers.h" #include "core_default_rpc_proxy.h" diff --git a/src/wallet/wallets_manager.h b/src/wallet/wallets_manager.h index f8238257..4f24848f 100644 --- a/src/wallet/wallets_manager.h +++ b/src/wallet/wallets_manager.h @@ -19,14 +19,16 @@ using namespace epee; #include "console_handler.h" #include "p2p/net_node.h" #include "currency_core/checkpoints_create.h" -#include "currency_core/currency_core.h" -#include "currency_core/bc_offers_service.h" -#include "rpc/core_rpc_server.h" -#include "currency_protocol/currency_protocol_handler.h" +#ifndef IOS_BUILD + #include "currency_core/currency_core.h" + #include "currency_core/bc_offers_service.h" + #include "rpc/core_rpc_server.h" + #include "currency_protocol/currency_protocol_handler.h" + #include "core_fast_rpc_proxy.h" +#endif #include "daemon/daemon_commands_handler.h" //#include "common/miniupnp_helper.h" #include "view_iface.h" -#include "core_fast_rpc_proxy.h" #include "wallet2.h" #include "wallet_id_adapter.h" #include "wallet_rpc_server.h"