mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-28 21:51:22 +00:00
relative links [ci skip]
This commit is contained in:
parent
54f2cc9709
commit
9e4c25761c
2
.gitignore
vendored
2
.gitignore
vendored
@ -15,3 +15,5 @@ test/p2p/data/
|
|||||||
test/logs
|
test/logs
|
||||||
.glide
|
.glide
|
||||||
coverage.txt
|
coverage.txt
|
||||||
|
docs/_build
|
||||||
|
docs/tools
|
||||||
|
@ -62,12 +62,12 @@ Next we replay all the messages from the WAL.
|
|||||||
I[10-04|13:54:30.392] Started node module=main nodeInfo="NodeInfo{pk: PubKeyEd25519{DF22D7C92C91082324A1312F092AA1DA197FA598DBBFB6526E177003C4D6FD66}, moniker: anonymous, network: test-chain-3MNw2N [remote , listen 10.0.2.15:46656], version: 0.11.0-10f361fc ([wire_version=0.6.2 p2p_version=0.5.0 consensus_version=v1/0.2.2 rpc_version=0.7.0/3 tx_index=on rpc_addr=tcp://0.0.0.0:46657])}"
|
I[10-04|13:54:30.392] Started node module=main nodeInfo="NodeInfo{pk: PubKeyEd25519{DF22D7C92C91082324A1312F092AA1DA197FA598DBBFB6526E177003C4D6FD66}, moniker: anonymous, network: test-chain-3MNw2N [remote , listen 10.0.2.15:46656], version: 0.11.0-10f361fc ([wire_version=0.6.2 p2p_version=0.5.0 consensus_version=v1/0.2.2 rpc_version=0.7.0/3 tx_index=on rpc_addr=tcp://0.0.0.0:46657])}"
|
||||||
|
|
||||||
Next follows a standard block creation cycle, where we enter a new round,
|
Next follows a standard block creation cycle, where we enter a new round,
|
||||||
propose a block, receive more than 2/3 of prevotes, than precommits and finally
|
propose a block, receive more than 2/3 of prevotes, then precommits and finally
|
||||||
have a chance to commit a block. For details, please refer to `Consensus
|
have a chance to commit a block. For details, please refer to `Consensus
|
||||||
Overview
|
Overview
|
||||||
<https://tendermint.readthedocs.io/projects/tools/en/master/introduction.html#consensus-overview>__`
|
<introduction.html#consensus-overview>`__
|
||||||
or `Byzantine Consensus Algorithm
|
or `Byzantine Consensus Algorithm
|
||||||
<https://tendermint.readthedocs.io/projects/tools/en/master/specification.html>__`.
|
<specification.html>`__.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
@ -117,11 +117,11 @@ Here is the list of modules you may encounter in Tendermint's log and a little
|
|||||||
overview what they do.
|
overview what they do.
|
||||||
|
|
||||||
- ``abci-client`` As mentioned in `Application Development Guide
|
- ``abci-client`` As mentioned in `Application Development Guide
|
||||||
<https://tendermint.readthedocs.io/en/master/app-development.html#abci-design>__`,
|
<app-development.html#abci-design>`__,
|
||||||
Tendermint acts as an ABCI client with respect to the application and
|
Tendermint acts as an ABCI client with respect to the application and
|
||||||
maintains 3 connections: mempool, consensus and query. The code used by
|
maintains 3 connections: mempool, consensus and query. The code used by
|
||||||
Tendermint Core can be found `here
|
Tendermint Core can be found `here
|
||||||
<https://github.com/tendermint/abci/tree/master/client>__`.
|
<https://github.com/tendermint/abci/tree/master/client>`__.
|
||||||
|
|
||||||
- ``blockchain``
|
- ``blockchain``
|
||||||
Provides storage, pool (a group of peers), and reactor for both storing and
|
Provides storage, pool (a group of peers), and reactor for both storing and
|
||||||
@ -136,10 +136,10 @@ overview what they do.
|
|||||||
- ``events``
|
- ``events``
|
||||||
Simple event notification system. The list of events can be found
|
Simple event notification system. The list of events can be found
|
||||||
`here
|
`here
|
||||||
<https://github.com/tendermint/tendermint/blob/master/types/events.go>__`.
|
<https://github.com/tendermint/tendermint/blob/master/types/events.go>`__.
|
||||||
You can subscribe to them by calling ``subscribe`` RPC method.
|
You can subscribe to them by calling ``subscribe`` RPC method.
|
||||||
Refer to `RPC docs
|
Refer to `RPC docs
|
||||||
<https://tendermint.readthedocs.io/projects/tools/en/master/specification/rpc.html>__`
|
<specification/rpc.html>`__
|
||||||
for additional information.
|
for additional information.
|
||||||
|
|
||||||
- ``mempool``
|
- ``mempool``
|
||||||
@ -149,13 +149,13 @@ overview what they do.
|
|||||||
- ``p2p``
|
- ``p2p``
|
||||||
Provides an abstraction around peer-to-peer communication. For more details,
|
Provides an abstraction around peer-to-peer communication. For more details,
|
||||||
please check out the `README
|
please check out the `README
|
||||||
<https://github.com/tendermint/tendermint/blob/56c60fba2381e4ac41d2ae38a1eb6569acfbc095/p2p/README.md>__`.
|
<https://github.com/tendermint/tendermint/blob/56c60fba2381e4ac41d2ae38a1eb6569acfbc095/p2p/README.md>`__.
|
||||||
|
|
||||||
- ``rpc``
|
- ``rpc``
|
||||||
`Tendermint's RPC <https://tendermint.readthedocs.io/projects/tools/en/master/specification/rpc.html>__`.
|
`Tendermint's RPC <specification/rpc.html>`__.
|
||||||
|
|
||||||
- ``rpc-server``
|
- ``rpc-server``
|
||||||
RPC server. For implementation details, please read the `README <https://github.com/tendermint/tendermint/blob/master/rpc/lib/README.md>__` .
|
RPC server. For implementation details, please read the `README <https://github.com/tendermint/tendermint/blob/master/rpc/lib/README.md>`__.
|
||||||
|
|
||||||
- ``state``
|
- ``state``
|
||||||
Represents the latest state and execution submodule, which executes
|
Represents the latest state and execution submodule, which executes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user