Fixed links

This commit is contained in:
Jasmina Malicevic
2022-05-20 15:42:28 +02:00
parent 4aad2de372
commit 68ff25901f
2 changed files with 3 additions and 3 deletions

View File

@@ -56,6 +56,6 @@ This section describes the Blocksync reactor and its internals including:
- [Peer to peer communication pattern](./communication.md)
- [Block Verification](./verification.md)
More details on how to use the Blocksync reactor and configure it when running Tendermint can be found [here](./../docs/tendermint-core/block-sync/README.md).
More details on how to use the Blocksync reactor and configure it when running Tendermint can be found [here](./../../docs/tendermint-core/block-sync/README.md).

View File

@@ -51,10 +51,10 @@ If we can trust this initial state at height H, we can use this fact to eliminat
### Verifying blocks past the trusted state
<img src="img/bc-reactor-blocks.png" alt="block diagram" title="Block overview" width="80%" name="Block_overview"/>
![Block overview](img/bc-reactor-blocks.png)
The [diagram](#Block_overview) shows all blocks at play when verifying block at height ` H + 1` - `newBlock`, where at height `H` we have the trusted block.
The diagram above shows all blocks at play when verifying block at height ` H + 1` - `newBlock`, where at height `H` we have the trusted block.
At a high level, the verification algorithm is represented by the code below.