Prepare documentation for v0.36.x backport branch. (#8705)

- Remove RFCs and ADRs from v0.36.x backport branch.
- Update branch-relative links.
This commit is contained in:
M. J. Fromberger
2022-06-07 09:42:46 -07:00
committed by GitHub
parent 6b2a6ed402
commit 783ab230d8
133 changed files with 34 additions and 17902 deletions
+4 -4
View File
@@ -35,7 +35,7 @@ little overview what they do.
- `abci-client` As mentioned in [Application Architecture Guide](../app-dev/app-architecture.md), Tendermint acts as an ABCI
client with respect to the application and maintains 3 connections:
mempool, consensus and query. The code used by Tendermint Core can
be found [here](https://github.com/tendermint/tendermint/tree/master/abci/client).
be found [here](https://github.com/tendermint/tendermint/blob/v0.36.x/abci/client).
- `blockchain` Provides storage, pool (a group of peers), and reactor
for both storing and exchanging blocks between peers.
- `consensus` The heart of Tendermint core, which is the
@@ -43,16 +43,16 @@ little overview what they do.
"submodules": `wal` (write-ahead logging) for ensuring data
integrity and `replay` to replay blocks and messages on recovery
from a crash.
[here](https://github.com/tendermint/tendermint/blob/master/types/events.go).
[here](https://github.com/tendermint/tendermint/blob/v0.36.x/types/events.go).
You can subscribe to them by calling `subscribe` RPC method. Refer
to [RPC docs](../tendermint-core/rpc.md) for additional information.
- `mempool` Mempool module handles all incoming transactions, whenever
they are coming from peers or the application.
- `p2p` Provides an abstraction around peer-to-peer communication. For
more details, please check out the
[README](https://github.com/tendermint/tendermint/tree/master/spec/p2p).
[README](https://github.com/tendermint/tendermint/blob/v0.36.x/spec/p2p).
- `rpc-server` RPC server. For implementation details, please read the
[doc.go](https://github.com/tendermint/tendermint/blob/master/rpc/jsonrpc/doc.go).
[doc.go](https://github.com/tendermint/tendermint/blob/v0.36.x/rpc/jsonrpc/doc.go).
- `state` Represents the latest state and execution submodule, which
executes blocks against the application.
- `statesync` Provides a way to quickly sync a node with pruned history.