Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-04 | Remove JSON Spirit wrapper, remove JSON Spirit leftovers | Jonas Schnelli | |
- implement find_value() function for UniValue - replace all Array/Value/Object types with UniValues, remove JSON Spirit to UniValue wrapper - remove JSON Spirit sources | |||
2015-06-04 | remove JSON Spirit UniValue wrapper | Jonas Schnelli | |
2015-06-04 | expicit set UniValue type to avoid empty values | Jonas Schnelli | |
2015-06-04 | extend conversion to UniValue | Jonas Schnelli | |
2015-05-27 | [REST] remove json input for getutxos, limit to query max. 15 outpoints | Jonas Schnelli | |
Remove possibility to send json encoded parameters to `/rest/getutxos/` to avoid possible DoS scenarios. The JSON output option is untouched. | |||
2015-05-27 | rest.cpp: strip whitespace | Jonas Schnelli | |
2015-05-11 | Merge pull request #6058 | Wladimir J. van der Laan | |
03c5687 appropriate response when trying to get a block in pruned mode (Jonas Schnelli) 1b2e555 add autoprune information to RPC "getblockchaininfo" (Jonas Schnelli) | |||
2015-05-11 | appropriate response when trying to get a block in pruned mode | Jonas Schnelli | |
2015-04-21 | [REST] getutxos REST command (based on Bip64) | Jonas Schnelli | |
has parts of @mhearn #4351 * allows querying the utxos over REST * same binary input and outputs as mentioned in Bip64 * input format = output format * various rpc/rest regtests | |||
2015-02-10 | Merge #5548: [REST] add /rest/chaininfos | Wladimir J. van der Laan | |
2c0f901 [REST] rest/chaininfos add documentation (Jonas Schnelli) 59582c8 [REST] add /rest/chaininfos (Jonas Schnelli) | |||
2015-01-05 | Replace direct use of 0 with SetNull and IsNull | Wladimir J. van der Laan | |
Replace x=0 with .SetNull(), x==0 with IsNull(), x!=0 with !IsNull(). Replace uses of uint256(0) with uint256(). | |||
2014-12-29 | [REST] add /rest/chaininfos | Jonas Schnelli | |
2014-12-19 | Added "Core" to copyright headers | sandakersmann | |
Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | |||
2014-12-16 | Make pass-by-ref arguments const. | Daniel Kraft | |
Make some of the arguments in rest.cpp, that are passed by reference but never modified, const to emphasise that. | |||
2014-12-12 | Add /rest/headers | Pieter Wuille | |
2014-12-09 | [REST] /rest/block response with full tx details | Jonas Schnelli | |
- rest block request returns full unfolded tx details - /rest/block/notxdetails/<HASH> returns block where transactions are only represented by its hash | |||
2014-12-03 | MOVEONLY: core/ -> primitives/ | Luke Dashjr | |
2014-11-27 | [REST] make selection of output-format mandatory, support dot url syntax | Jonas Schnelli | |
1. Remove the default format (binary) because `rest/block/<hash>/Hex` would end up delivering binary data. 2. List available formats when chosen format was not found (reduces need for documentation) 3. Change url syntax to dot extension like format chosing (like `rest/tx/<hash>.json` | |||
2014-11-26 | [REST] give an appropriate response in warmup phase | Jonas Schnelli | |
2014-11-26 | [REST] fix headersonly flag for BINARY responses | Jonas Schnelli | |
2014-11-20 | minor style cleanup after HTTP rest interface merge | Philip Kaufmann | |
- no code changes | |||
2014-11-18 | Properly lock cs_main in rest_block | Pieter Wuille | |
2014-11-18 | HTTP REST: minor fixes | Jeff Garzik | |
1) const-ify internal helper ParseHashStr() 2) use HTTPError() helper when returning HTTP_NOT_FOUND | |||
2014-11-11 | Add unauthenticated HTTP REST interface to public blockchain data. | Jeff Garzik | |