tendermint/rpc/core
Anton Kaliaev dc0e8de9b0
extract some of the consensus types into ./types
so they can be used in rpc/core/types/responses.go.

```
So, it seems like we could use the actual structs here, but we don't want to have to import consensus to get them, as then clients are importing too much crap. So probably we should move some types from consensus into consensus/types so we can import.

Will these raw messages be identical to:

type ResultDumpConsensusState struct {
  RoundState cstypes.RoundState
  PeerRoundStates map[string]cstypes.PeerRoundState
}
```
https://github.com/tendermint/tendermint/pull/724#discussion_r143598193
2017-10-10 12:39:21 +04:00
..
types extract some of the consensus types into ./types 2017-10-10 12:39:21 +04:00
README.md rpc: typo fixes 2017-08-16 15:18:55 -04:00
abci.go abci.Info takes a struct; less merkleeyes 2017-09-22 11:42:40 -04:00
blocks.go all: no more anonymous imports 2017-10-04 16:40:45 -04:00
consensus.go extract some of the consensus types into ./types 2017-10-10 12:39:21 +04:00
dev.go
doc.go rpc: typo fixes 2017-08-16 15:18:55 -04:00
doc_template.txt
events.go updated json response to match spec by @davebryson 2017-09-18 16:35:50 -04:00
mempool.go
net.go Amount -> Power. Closes #166 2017-09-21 14:59:27 -04:00
pipe.go extract some of the consensus types into ./types 2017-10-10 12:39:21 +04:00
routes.go rpc: historical validators 2017-09-03 16:07:37 -04:00
status.go Merge pull request #526 from tendermint/feature/rpc-docs 2017-08-25 18:10:21 -04:00
tx.go rpc: typo fixes 2017-08-16 15:18:55 -04:00
version.go

README.md

Tendermint RPC

Generate markdown for Slate

We are using Slate to power our RPC documentation. If you are changing a comment, make sure to copy the resulting changes to the slate repo and make a PR there as well. For generating markdown use:

go get github.com/melekes/godoc2md

godoc2md -template rpc/core/doc_template.txt github.com/tendermint/tendermint/rpc/core | grep -v -e "pipe.go" -e "routes.go" -e "dev.go" | sed 's$/src/target$https://github.com/tendermint/tendermint/tree/master/rpc/core$'