aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmisc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* switch from boost int types to <stdint.h>Kamil Domanski2014-05-211-3/+3
| | | | | | Rebased-By: Wladimir J. van der Laan <[email protected]> Rebased-From: 4b61a6a, 3e74ac2, d56e30c Github-Pull: #4129
* Remove dummy PRIszX macros for formattingWladimir J. van der Laan2014-05-121-1/+1
| | | | | | | | | | | | Size specifiers are no longer needed now that we use typesafe tinyformat for string formatting, instead of the system's sprintf. No functional changes. This continues the work in #3735. Rebased-By: Wladimir J. van der Laan <[email protected]> Rebased-From: 783b182
* Fix typo in `createmultisig` helpWladimir J. van der Laan2014-03-311-1/+1
| | | | iCreateMultisig is not a thing.
* Add a "relayfee" field to getinfo.Gregory Maxwell2014-03-131-2/+4
| | | | | | | | | | | This shows the minimum relay fee for non-free transactions in btc/kb. The armory developers requested this so that they can prevent users from creating transactions that not even their local bitcoind will relay. This also slightly reorders the getinfo output so that the fee related lines are grouped and changes the help text to reflect that the units are btc/kb.
* Copyright header updates s/2013/2014 on files whose last git commit was done ↵gubatron2014-02-091-1/+1
| | | | | | in 2014. contrib/devtools/fix-copyright-headers.py script to be able to perform this maintenance task with ease during the rest of the year, every year. Modifications to contrib/devtools/README.md to document what fix-copyright-headers.py does.
* Remove redundant .c_str()sWladimir J. van der Laan2014-01-231-2/+2
| | | | | | | After the tinyformat switch sprintf() family functions support passing actual std::string objects. Remove unnecessary c_str calls (236 of them) in logging and formatting.
* small headers ordering cleanupPhilip Kaufmann2014-01-111-2/+1
| | | | | | - keep headers in alphabetical order - fix Makefile.am (2 files in 1 line - leftover) - remove some spaces etc.
* Move `verifymessage` from rpcwallet to rpcmiscWladimir J. van der Laan2013-12-131-0/+51
| | | | Enables it in --disable-wallet compiles.
* Move `createmultisig` from rpcwallet to rpcmiscWladimir J. van der Laan2013-12-131-0/+101
| | | | Enables it in --disable-wallet compiles.
* Move `validateaddress` from rpcwallet to rpcmiscWladimir J. van der Laan2013-12-131-0/+85
| | | | | Enables it in --disable-wallet compiles. Delimit wallet-using part using #ifdef ENABLE_WALLET.
* Move `nTransactionFee` from main.cpp to wallet.cppWladimir J. van der Laan2013-12-131-2/+0
| | | | | Transaction fee is only used by the wallet. No need for it to be in main.cpp.
* Move `getinfo` from rpcnet to rpcmiscWladimir J. van der Laan2013-12-131-0/+63
| | | | | | `getinfo` is a general info method which shows information from multiple sources, it doesn't belong in rpcnet.cpp or any of the other current RPC implementation files.
* add new RPC implementation file `rpcmisc.cpp`Wladimir J. van der Laan2013-12-131-0/+28