diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-11 09:46:35 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-11 09:46:42 -0400 |
commit | 4103cc31690e5be21854a9628f57c54b880ee195 (patch) | |
tree | 5566b3a45efb6ded37fec7a3d65dd03d65020a9a /src/wallet | |
parent | 362518791ade834d7f1f25b679ba236dcf5c3ad0 (diff) | |
parent | 7d038dcb41d93ea0b7401140998225adaab8c065 (diff) |
Merge #14168: Remove ENABLE_WALLET from libbitcoin_server.a
7d038dcb41 [build] remove ENABLE_WALLET ifdef from httprpc.cpp (John Newbery)
3076556cd0 [build] Move dummy wallet into its own .cpp file. (John Newbery)
Pull request description:
This removes the final instances of ENABLE_WALLET in libbitcoin_server and so completes #7965.
Tree-SHA512: a49128b7c17f4f69940d5843e6b785f08687efb377b5157d5b267d1205e596eb5c1966f1afb8ab36bcc2491c46252099e3e844c91f5623da8ded2e358d46338d
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/init.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/init.cpp b/src/wallet/init.cpp index b36287ff50..a299a4ee44 100644 --- a/src/wallet/init.cpp +++ b/src/wallet/init.cpp @@ -19,6 +19,9 @@ class WalletInit : public WalletInitInterface { public: + //! Was the wallet component compiled in. + bool HasWalletSupport() const override {return true;} + //! Return the wallets help message. void AddWalletOptions() const override; |