diff options
| author | MarcoFalke <[email protected]> | 2020-06-19 18:07:18 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-06-27 11:39:09 -0400 |
| commit | fac96e6450d595fe67168cb7afa7692da6cc9973 (patch) | |
| tree | 3aaa61c457fe724293841630bf6b97eca5704a1b /src/interfaces/wallet.h | |
| parent | Revert "Fix link error with --enable-debug" (diff) | |
| download | discoin-fac96e6450d595fe67168cb7afa7692da6cc9973.tar.xz discoin-fac96e6450d595fe67168cb7afa7692da6cc9973.zip | |
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.
Diffstat (limited to 'src/interfaces/wallet.h')
| -rw-r--r-- | src/interfaces/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index e2161521f..6f39b3eec 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -9,8 +9,8 @@ #include <pubkey.h> // For CKeyID and CScriptID (definitions needed in CTxDestination instantiation) #include <script/standard.h> // For CTxDestination #include <support/allocators/secure.h> // For SecureString -#include <ui_interface.h> // For ChangeType #include <util/message.h> +#include <util/ui_change_type.h> #include <functional> #include <map> |