Fix links in docs (#9119)

This commit is contained in:
Greg Fitzgerald
2020-03-27 09:36:55 -06:00
committed by GitHub
parent 5d9298543f
commit b82a9c832b
18 changed files with 30 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
# Blockstore
After a block reaches finality, all blocks from that one on down to the genesis block form a linear chain with the familiar name blockchain. Until that point, however, the validator must maintain all potentially valid chains, called _forks_. The process by which forks naturally form as a result of leader rotation is described in [fork generation](../../cluster/fork-generation.md). The _blockstore_ data structure described here is how a validator copes with those forks until blocks are finalized.
After a block reaches finality, all blocks from that one on down to the genesis block form a linear chain with the familiar name blockchain. Until that point, however, the validator must maintain all potentially valid chains, called _forks_. The process by which forks naturally form as a result of leader rotation is described in [fork generation](../cluster/fork-generation.md). The _blockstore_ data structure described here is how a validator copes with those forks until blocks are finalized.
The blockstore allows a validator to record every shred it observes on the network, in any order, as long as the shred is signed by the expected leader for a given slot.

View File

@@ -64,4 +64,4 @@ To pass messages between programs, the receiving program must accept the message
## Future Work
* [Continuations and Signals for long running Transactions]([https://github.com/solana-labs/solana/issues/1485])
* [Continuations and Signals for long running Transactions](https://github.com/solana-labs/solana/issues/1485)