aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Welsh <jacob@welshcomputing.com>2014-12-30 22:49:42 -0500
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-02 12:10:22 +0100
commitc2029018cc55c784c4f03c9af4a68015cb7230d2 (patch)
treeb06a34d268939edd9d01dc5501be72e3d36791ae
parent50891ad080f34e3c3b053c2440332e1a1fd35082 (diff)
downloadbitcoin-c2029018cc55c784c4f03c9af4a68015cb7230d2.tar.xz
Release notes: fix REST URIs and wrap line
Rebased-From: e64e084e95ca85b038c7f65ad0824d14d03bc044 Github-Pull: #5581
-rw-r--r--doc/release-notes.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index f8fc3f0bc1..590a61d0f1 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -145,10 +145,11 @@ plain HTTP instead of JSON-RPC.
Assuming a local RPC server running on port 8332, it is possible to request:
- Blocks: http://localhost:8332/rest/block/*HASH*.*EXT*
-- Blocks without transactions: http://localhost:8332/block/notxdetails/*HASH*.*EXT*
-- Transactions (requires `-txindex`): http://localhost:8332/tx/*HASH*.*EXT*
+- Blocks without transactions: http://localhost:8332/rest/block/notxdetails/*HASH*.*EXT*
+- Transactions (requires `-txindex`): http://localhost:8332/rest/tx/*HASH*.*EXT*
-In every case, *EXT* can be `bin` (for raw binary data), `hex` (for hex-encoded binary) or `json`.
+In every case, *EXT* can be `bin` (for raw binary data), `hex` (for hex-encoded
+binary) or `json`.
For more details, see the `doc/REST-interface.md` document in the repository.