Files
tendermint/rpc/core
Anton Kaliaev b6a510a3e7 make ineffassign linter pass (#3386)
Refs #3262

This fixes two small bugs:

1) lite/dbprovider: return `ok` instead of true in parse* functions. It's weird that we're ignoring `ok` value before.
2) consensus/state: previously because of the shadowing we almost never output "Error with msg". Now we declare both `added` and `err` in the beginning of the function, so there's no shadowing.
2019-03-08 09:46:09 +04:00
..
2019-02-23 10:32:31 -05:00
2019-02-11 16:31:34 +04:00
2018-07-24 21:18:20 -04:00
2019-02-11 16:31:34 +04:00
2019-02-11 16:31:34 +04:00
2018-11-14 16:47:41 +04:00
2019-02-22 23:11:27 -05:00
2019-02-28 11:31:59 +04:00
2019-03-08 09:46:09 +04:00
2019-02-20 15:34:52 +04:00

Tendermint RPC

We are using Slate to power our RPC documentation. For generating markdown use:

go get github.com/davecheney/godoc2md

# from root of this repo
make rpc-docs

Pagination

Requests that return multiple items will be paginated to 30 items by default. You can specify further pages with the ?page parameter. You can also set a custom page size up to 100 with the ?per_page parameter.