Change Eth2 Repository Names (#9425)

* eth2 repo name changes

* rem sha

* use consensus spec terminology and pin sha
This commit is contained in:
Raul Jordan
2021-08-19 13:00:57 -05:00
committed by GitHub
parent 9f36116c2f
commit eac542a8ac
64 changed files with 87 additions and 87 deletions

View File

@@ -1,6 +1,6 @@
# Specs checker tool
This simple tool helps downloading and parsing [Ethereum specs](https://github.com/ethereum/eth2.0-specs/tree/dev/specs),
This simple tool helps downloading and parsing [Ethereum specs](https://github.com/ethereum/consensus-specs/tree/dev/specs),
to be later used for making sure that our reference comments match specs definitions precisely.
### Updating the reference specs

View File

@@ -12,7 +12,7 @@ import (
"github.com/urfave/cli/v2"
)
const baseUrl = "https://raw.githubusercontent.com/ethereum/eth2.0-specs/dev"
const baseUrl = "https://raw.githubusercontent.com/ethereum/consensus-specs/dev"
// Regex to find Python's code snippets in markdown.
var reg2 = regexp.MustCompile(`(?msU)^\x60\x60\x60python\n+def\s(.*)^\x60\x60\x60`)