Skip to content

Commit

Permalink
fix missing spaces in headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Kauffman authored Apr 19, 2019
1 parent ed58f32 commit d7a092a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/REST-interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The REST API can be enabled with the `-rest` option.
Supported API
-------------

####Transactions
#### Transactions
`GET /rest/tx/<TX-HASH>.<bin|hex|json>`

Given a transaction hash: returns a transaction in binary, hex-encoded binary, or JSON formats.

For full TX query capability, one must enable the transaction index via "txindex=1" command line / configuration option.

####Blocks
#### Blocks
`GET /rest/block/<BLOCK-HASH>.<bin|hex|json>`
`GET /rest/block/notxdetails/<BLOCK-HASH>.<bin|hex|json>`

Expand All @@ -23,12 +23,12 @@ The HTTP request and response are both handled entirely in-memory, thus making m

With the /notxdetails/ option JSON response will only contain the transaction hash instead of the complete transaction details. The option only affects the JSON response.

####Blockheaders
#### Blockheaders
`GET /rest/headers/<COUNT>/<BLOCK-HASH>.<bin|hex|json>`

Given a block hash: returns <COUNT> amount of blockheaders in upward direction.

####Chaininfos
#### Chaininfos
`GET /rest/chaininfo.json`

Returns various state info regarding block chain processing.
Expand All @@ -44,7 +44,7 @@ Only supports JSON as output format.
* pruneheight : (numeric) heighest block available
* softforks : (array) status of softforks in progress

####Query UTXO set
#### Query UTXO set
`GET /rest/getutxos/<checkmempool>/<txid>-<n>/<txid>-<n>/.../<txid>-<n>.<bin|hex|json>`

The getutxo command allows querying of the UTXO set given a set of outpoints.
Expand Down Expand Up @@ -77,7 +77,7 @@ $ curl localhost:18332/rest/getutxos/checkmempool/b2cdfd7b89def827ff8af7cd9bff76
}
```

####Memory pool
#### Memory pool
`GET /rest/mempool/info.json`

Returns various information about the TX mempool.
Expand Down

0 comments on commit d7a092a

Please sign in to comment.