From e64e084e95ca85b038c7f65ad0824d14d03bc044 Mon Sep 17 00:00:00 2001 From: Jacob Welsh Date: Tue, 30 Dec 2014 22:49:42 -0500 Subject: [PATCH] Release notes: fix REST URIs and wrap line --- doc/release-notes.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/release-notes.md b/doc/release-notes.md index 3df7b3a8e06..9abd05a76dd 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -143,10 +143,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.