diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-11-27 15:41:12 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-03 09:07:13 +0100 |
| commit | 0b47fe6bdc14e942bc886a08a55cc183c6820636 (patch) | |
| tree | 36e789aef8cf8df1d15752a207bfd2461a2232bf /src/init.h | |
| parent | Merge pull request #3309 (diff) | |
| download | discoin-0b47fe6bdc14e942bc886a08a55cc183c6820636.tar.xz discoin-0b47fe6bdc14e942bc886a08a55cc183c6820636.zip | |
bitcoin-cli: remove unneeded dependencies (only code movement)
Remove unnecessary dependencies for bitcoin-cli
(leveldb, berkelydb, wallet, RPC server)
Build system changes:
- split libbitcoin.a into libbitcoin_common.a, libbitcoin_server.a and
libbitcoin_cli.a
Code changes (movement only):
- split up HelpMessage into HelpMessage in init.cpp and HelpMessageCli
in rpcclient.cpp
- move uiInterface from init.cpp to util.cpp
Diffstat (limited to 'src/init.h')
| -rw-r--r-- | src/init.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/init.h b/src/init.h index 864f2f461..018d2d5ea 100644 --- a/src/init.h +++ b/src/init.h @@ -26,8 +26,7 @@ bool AppInit2(boost::thread_group& threadGroup, bool fForceServer); enum HelpMessageMode { HMM_BITCOIND, - HMM_BITCOIN_QT, - HMM_BITCOIN_CLI + HMM_BITCOIN_QT }; std::string HelpMessage(HelpMessageMode mode); |