Skip to content

Commit 5fa7791

Browse files
authored
Merge pull request #3975 from jtraglia/fix-invalid-file-references
Fix invalid file references in markdown files
2 parents a2e16c8 + 8cfe8fb commit 5fa7791

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This repository hosts the current Ethereum proof-of-stake specifications. Discus
1010

1111
[![GitHub release](https://img.shields.io/github/v/release/ethereum/consensus-specs)](https://github.com/ethereum/consensus-specs/releases/) [![PyPI version](https://badge.fury.io/py/eth2spec.svg)](https://badge.fury.io/py/eth2spec) [![testgen](https://github.com/ethereum/consensus-specs/actions/workflows/generate_vectors.yml/badge.svg?branch=dev&event=schedule)](https://github.com/ethereum/consensus-specs/actions/workflows/generate_vectors.yml)
1212

13-
Core specifications for Ethereum proof-of-stake clients can be found in [specs](specs/). These are divided into features.
13+
Core specifications for Ethereum proof-of-stake clients can be found in [specs](./specs). These are divided into features.
1414
Features are researched and developed in parallel, and then consolidated into sequential upgrades when ready.
1515

1616
### Stable Specifications

specs/_features/custody_game/validator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Custody Game -- Honest Validator
22

33
**Notice**: This document is a work-in-progress for researchers and implementers.
4-
This is an accompanying document to the [Custody Game](./), which describes the expected actions of a "validator"
4+
This is an accompanying document to [Custody Game -- The Beacon Chain](./beacon-chain.md), which describes the expected actions of a "validator"
55
participating in the shard data Custody Game.
66

77
## Table of contents

specs/_features/eip6800/fork.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ If `state.slot % SLOTS_PER_EPOCH == 0` and `compute_epoch_at_slot(state.slot) ==
6868
an irregular state change is made to upgrade to eip6800.
6969

7070
The upgrade occurs after the completion of the inner loop of `process_slots` that sets `state.slot` equal to `EIP6800_FORK_EPOCH * SLOTS_PER_EPOCH`.
71-
Care must be taken when transitioning through the fork boundary as implementations will need a modified [state transition function](../phase0/beacon-chain.md#beacon-chain-state-transition-function) that deviates from the Phase 0 document.
71+
Care must be taken when transitioning through the fork boundary as implementations will need a modified [state transition function](../../phase0/beacon-chain.md#beacon-chain-state-transition-function) that deviates from the Phase 0 document.
7272
In particular, the outer `state_transition` function defined in the Phase 0 document will not expose the precise fork slot to execute the upgrade in the presence of skipped slots at the fork boundary. Instead, the logic must be within `process_slots`.
7373

7474
```python

specs/_features/eip6914/beacon-chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
This is the beacon chain specification to assign new deposits to existing validator records. Refers to [EIP-6914](https://github.com/ethereum/EIPs/pull/6914).
2525

26-
*Note:* This specification is built upon [Capella](../../capella/beacon_chain.md) and is under active development.
26+
*Note:* This specification is built upon [Capella](../../capella/beacon-chain.md) and is under active development.
2727

2828
## Preset
2929

specs/electra/beacon-chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Electra is a consensus-layer upgrade containing a number of features. Including:
118118
* [EIP-7251](https://eips.ethereum.org/EIPS/eip-7251): Increase the MAX_EFFECTIVE_BALANCE
119119
* [EIP-7549](https://eips.ethereum.org/EIPS/eip-7549): Move committee index outside Attestation
120120

121-
*Note:* This specification is built upon [Deneb](../deneb/beacon_chain.md) and is under active development.
121+
*Note:* This specification is built upon [Deneb](../deneb/beacon-chain.md) and is under active development.
122122

123123
## Constants
124124

specs/electra/validator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This document represents the changes to be made in the code of an "honest valida
3838

3939
## Prerequisites
4040

41-
This document is an extension of the [Deneb -- Honest Validator](../../deneb/validator.md) guide.
41+
This document is an extension of the [Deneb -- Honest Validator](../deneb/validator.md) guide.
4242
All behaviors and definitions defined in this document, and documents it extends, carry over unless explicitly noted or overridden.
4343

4444
All terminology, constants, functions, and protocol mechanics defined in the updated Beacon Chain doc of [Electra](./beacon-chain.md) are requisite for this document and used throughout.

tests/formats/kzg_7594/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ We do not recommend rolling your own crypto or using an untested KZG library.
66

77
The KZG test suite runner has the following handlers:
88

9-
- [`compute_cells`](./compute_cells.md)
109
- [`compute_cells_and_kzg_proofs`](./compute_cells_and_kzg_proofs.md)
10+
- [`recover_cells_and_kzg_proofs`](./recover_cells_and_kzg_proofs.md)
1111
- [`verify_cell_kzg_proof_batch`](./verify_cell_kzg_proof_batch.md)
12-
- [`recover_all_cells`](./recover_all_cells.md)

0 commit comments

Comments
 (0)