From fac96e6450d595fe67168cb7afa7692da6cc9973 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 19 Jun 2020 18:07:18 -0400 Subject: [PATCH] wallet: Do not include server symbols ui_interface is in libbitcoin_server and can not be included in the wallet because the wallet does not link with server symbols. --- src/Makefile.am | 1 + src/interfaces/wallet.cpp | 2 +- src/interfaces/wallet.h | 2 +- src/ui_interface.h | 8 -------- src/util/ui_change_type.h | 15 +++++++++++++++ src/wallet/wallet.h | 2 +- 6 files changed, 19 insertions(+), 11 deletions(-) create mode 100644 src/util/ui_change_type.h diff --git a/src/Makefile.am b/src/Makefile.am index 632ed3e31..d94d829e2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -234,6 +234,7 @@ BITCOIN_CORE_H = \ util/threadnames.h \ util/time.h \ util/translation.h \ + util/ui_change_type.h \ util/url.h \ util/vector.h \ validation.h \ diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp index b65eb72b1..a57a08604 100644 --- a/src/interfaces/wallet.cpp +++ b/src/interfaces/wallet.cpp @@ -13,11 +13,11 @@ #include