aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmisc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* remove SOCKS4 support from core and GUIPhilip Kaufmann2015-06-271-1/+1
| | | | - now we support SOCKS5 only
* switch from boost int types to <stdint.h>Kamil Domanski2014-07-091-3/+3
| | | | | | Rebased-By: Wladimir J. van der Laan <[email protected]> Rebased-From: 4b61a6a, 3e74ac2, d56e30c Github-Pull: #4129
* Check redeemScript size does not exceed 520 byte limitPeter Todd2014-06-291-2/+7
| | | | | | | | | | | | redeemScripts >520bytes can't be spent due to the MAX_SCRIPT_ELEMENT_SIZE limit; previously the addmultisigaddress and createmultisig RPC calls would let you violate that limit unknowingly. Also made the wallet code itself check the redeemScript prior to adding it to the wallet, which in the (rare) instance that a user has added an invalid oversized redeemScript to their wallet causes an error on startup. The affected key isn't added to the wallet; other keys are unaffected.
* Fix typo in `createmultisig` helpWladimir J. van der Laan2014-05-261-2/+2
| | | | | | iCreateMultisig is not a thing. [Also dogeify it]
* Replaced references to "btc" with "doge".Ross Nicoll2014-05-181-2/+2
|
* Add a "relayfee" field to getinfo.Gregory Maxwell2014-05-181-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. Conflicts: src/rpcmisc.cpp
* Lets get at least dogecoind buildingAlan Westbrook2014-04-051-1/+1
| | | | | This is an Xcode project and a script to wrangle boost to work on the mac.
* Replaced occurrences of "bitcoin" with "dogecoin" or "Dogecoin" as appropriateRoss Nicoll2014-03-281-9/+9
| | | | (specific, use of "Dogecoin" as a noun are now capitalised).
* Replaced references to Bitcoin with Dogecoin/Dogecoin Core as appropriate.Ross Nicoll2014-03-281-1/+1
|
* change currency three-letter-code to DOGEJannis Froese2014-03-241-1/+1
| | | | | | also change length of currency amounts in UI (cherry picked from commit inutoshi/inutoshi@8dcef8791a02327c8061235df7a77e2da6b59ee2)
* 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