diff options
author | John Newbery <john@johnnewbery.com> | 2018-09-07 12:36:53 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-09-10 14:27:32 -0400 |
commit | 7d038dcb41d93ea0b7401140998225adaab8c065 (patch) | |
tree | 88b3a490c0e0b3f8649b22f892be60f60d2f6088 /src/wallet/init.cpp | |
parent | 3076556cd0317f7a05fd6836133dd6c051c4b53f (diff) |
[build] remove ENABLE_WALLET ifdef from httprpc.cpp
Diffstat (limited to 'src/wallet/init.cpp')
-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; |