aboutsummaryrefslogtreecommitdiff
path: root/src/rpcclient.cpp
Commit message (Collapse)AuthorAgeFilesLines
* switch from boost int types to <stdint.h>Kamil Domanski2014-05-211-26/+26
| | | | | | Rebased-By: Wladimir J. van der Laan <[email protected]> Rebased-From: 4b61a6a, 3e74ac2, d56e30c Github-Pull: #4129
* improve command-line options outputCozz Lovan2014-03-251-2/+3
|
* Remove unused includes of boost lexical_castWladimir J. van der Laan2014-03-071-1/+0
| | | | We don't use lexical_cast anywhere, no need to include it.
* Replace PrintException with PrintExceptionContinue + throwWladimir J. van der Laan2014-02-261-1/+2
| | | | | | | | | Just a pet peeve. (PrintException has exactly the same body as PrintExceptionContinue but does a re-throw at the end. Move these re-throws to the call site, this aids understanding what is going on as well as eliminates a bit of code duplication in util.cpp)
* Fix bitcoin-cli exit status codeCozz Lovan2014-02-261-1/+1
|
* some string and indentation updates in init/rpcclientPhilip Kaufmann2013-12-091-1/+1
|
* Merge pull request #3320 from laanwj/2013_11_cli_splitGavin Andresen2013-12-031-0/+32
|\ | | | | bitcoin-cli: remove unneeded dependencies (only minor code movement)
| * bitcoin-cli: remove unneeded dependencies (only code movement)Wladimir J. van der Laan2013-12-031-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Add verbose boolean to getrawmempoolGavin Andresen2013-11-301-0/+1
|/ | | | | Also changes mempool to store CTxMemPoolEntries to keep track of when they enter/exit the pool.
* Split up bitcoinrpc (code movement only)Wladimir J. van der Laan2013-11-271-0/+246
Split bitcoinrpc up into - rpcserver: bitcoind RPC server - rpcclient: bitcoin-cli RPC client - rpcprotocol: shared common HTTP/JSON-RPC protocol code One step towards making bitcoin-cli independent from the rest of the code, and thus a smaller executable that doesn't have to be linked against leveldb. This commit only does code movement, there are no functional changes.