Reduce Usage of Eth2 Terminology in Prysm (#9104)

* remove all mentions

* more changes

* folder by folder

Co-authored-by: terence tsao <terence@prysmaticlabs.com>
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
Raul Jordan
2021-06-26 14:00:33 -05:00
committed by GitHub
parent dd0ae1bbef
commit a860648960
122 changed files with 183 additions and 188 deletions

View File

@@ -14,7 +14,7 @@ var log = logrus.WithField("prefix", "db")
var Commands = &cli.Command{
Name: "db",
Category: "db",
Usage: "defines commands for interacting with eth2 beacon node database",
Usage: "defines commands for interacting with the Ethereum Beacon Node database",
Subcommands: []*cli.Command{
{
Name: "restore",

View File

@@ -70,7 +70,7 @@ var (
Usage: "The port on which the gateway server runs on",
Value: 3500,
}
// ApiMiddlewarePort specifies the port for an HTTP proxy server which acts as a middleware between Eth2 API clients and Prysm's gRPC gateway.
// ApiMiddlewarePort specifies the port for an HTTP proxy server which acts as a middleware between Ethereum consensus API clients and Prysm's gRPC gateway.
// The middleware serves JSON values conforming to the specification: https://ethereum.github.io/eth2.0-APIs/
ApiMiddlewarePort = &cli.IntFlag{
Name: "api-middleware-port",

View File

@@ -1,4 +1,4 @@
// Package beacon-chain defines the entire runtime of an eth2 beacon node.
// Package beacon-chain defines the entire runtime of an Ethereum beacon node.
package main
import (
@@ -120,7 +120,7 @@ func init() {
func main() {
app := cli.App{}
app.Name = "beacon-chain"
app.Usage = "this is a beacon chain implementation for Ethereum 2.0"
app.Usage = "this is a beacon chain implementation for Ethereum"
app.Action = startNode
app.Version = version.Version()
app.Commands = []*cli.Command{