From 8afbc98b561d714fdadd1946ec2a5aab83f479de Mon Sep 17 00:00:00 2001 From: Julien Date: Sat, 25 Nov 2023 03:08:01 -0800 Subject: [PATCH] docs: update broken annotated spec link (#6126) Update broken link --- docs/design/depgraph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/depgraph.md b/docs/design/depgraph.md index 9838dfaccac7..0135f86b672a 100644 --- a/docs/design/depgraph.md +++ b/docs/design/depgraph.md @@ -99,7 +99,7 @@ Let's talk about how each package fits together in finer detail, from top to bot ## `@lodestar/fork-choice` [@lodestar/fork-choice](https://github.com/ChainSafe/lodestar/tree/unstable/packages/fork-choice) holds the methods for reading/writing the fork choice DAG. The `@lodestar/beacon-node` package is the sole consumer of this package because the beacon node itself is what controls when the fork choice DAG is updated. -For a good explanation on how the fork choice itself works, see the [annotated fork choice spec](https://github.com/ethereum/annotated-spec/blob/v1.1.10/phase0/fork-choice.md). This is an annotated version of the [Ethereum Consensus fork choice spec](https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/fork-choice.md) which `lodestar-fork-choice` is based on. +For a good explanation on how the fork choice itself works, see the [annotated fork choice spec](https://github.com/ethereum/annotated-spec/blob/master/phase0/fork-choice.md). This is an annotated version of the [Ethereum Consensus fork choice spec](https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/fork-choice.md) which `lodestar-fork-choice` is based on. ## `@lodestar/validator`