From 5c32ebcda848612801a3f579179448ecaef1ddea Mon Sep 17 00:00:00 2001 From: Marko Date: Tue, 23 Mar 2021 11:13:42 +0000 Subject: [PATCH] p2p: links (#268) * fix links * fix more links --- spec/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spec/README.md b/spec/README.md index cf7d1c45d..31e740c44 100644 --- a/spec/README.md +++ b/spec/README.md @@ -36,11 +36,11 @@ please submit them to our [bug bounty](https://tendermint.com/security)! ### P2P and Network Protocols - [The Base P2P Layer](./p2p/node.md): multiplex the protocols ("reactors") on authenticated and encrypted TCP connections -- [Peer Exchange (PEX)](./reactors/pex/reactor.md): gossip known peer addresses so peers can find each other -- [Block Sync](./reactors/block_sync/reactor.md): gossip blocks so peers can catch up quickly -- [Consensus](./reactors/consensus/consensus.md): gossip votes and block parts so new blocks can be committed -- [Mempool](./reactors/mempool/reactor.md): gossip transactions so they get included in blocks -- [Evidence](./reactors/evidence/reactor.md): sending invalid evidence will stop the peer +- [Peer Exchange (PEX)](./p2p/messages/pex.md): gossip known peer addresses so peers can find each other +- [Block Sync](./p2p/messages/block-sync.md): gossip blocks so peers can catch up quickly +- [Consensus](./p2p/messages/consensus.md): gossip votes and block parts so new blocks can be committed +- [Mempool](./p2p/messages/mempool.md): gossip transactions so they get included in blocks +- [Evidence](./p2p/messages/evidence.md): sending invalid evidence will stop the peer ### Software