aboutsummaryrefslogtreecommitdiff
path: root/src/univalue/univalue.cpp
Commit message (Collapse)AuthorAgeFilesLines
* remove univalue, prepare for subtreeJonas Schnelli2015-10-011-303/+0
|
* univalue: Avoid unnecessary roundtrip through double for numbersWladimir J. van der Laan2015-07-181-3/+2
| | | | | | | | | | JSON makes no distinction between numbers and reals, and our code doesn't need to do so either. This removes VREAL, as well as its specific post-processing in `UniValue::write`. Non-monetary amounts do not need to be forcibly formatted with 8 decimals, so the extra roundtrip was unnecessary (and potentially loses precision).
* univalue: add strict type checkingWladimir J. van der Laan2015-06-041-1/+78
|
* Remove JSON Spirit wrapper, remove JSON Spirit leftoversJonas Schnelli2015-06-041-0/+12
| | | | | | - implement find_value() function for UniValue - replace all Array/Value/Object types with UniValues, remove JSON Spirit to UniValue wrapper - remove JSON Spirit sources
* univalue: add support for real, fix percision and make it json_spirit compatibleJonas Schnelli2015-06-041-2/+6
| | | | - avoid breaking the API because of different number/percision handling
* UniValue: export NullUniValue global constantJeff Garzik2015-06-041-5/+5
|
* Remove references to X11 licenceMichael Ford2014-12-161-1/+1
|
* UniValue: use correct setNumStr() input val, when setting number valuesJeff Garzik2014-08-201-1/+1
|
* univalue: remove unused methods getArray, getObjectJeff Garzik2014-07-301-22/+0
|
* Add "bitcoin-tx" command line utility and supporting modules.Jeff Garzik2014-07-291-0/+233
This is a simple utility that provides command line manipulation of a hex-encoded TX. The utility takes a hex string on the command line as input, performs zero or more mutations, and outputs a hex string to standard output. This utility is also an intentional exercise of the "bitcoin library" concept. It is designed to require minimal libraries, and works entirely without need for any RPC or P2P communication. See "bitcoin-tx --help" for command and options summary.