Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |