common: delete MakeName (#27023)

common,p2p: remove unused function MakeName
pull/27043/head
lightclient 1 year ago committed by GitHub
parent dc2f4b9304
commit 2c5798464e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      common/path.go
  2. 1
      p2p/server.go

@ -17,19 +17,10 @@
package common
import (
"fmt"
"os"
"path/filepath"
"runtime"
)
// MakeName creates a node name that follows the ethereum convention
// for such names. It adds the operation system name and Go runtime version
// the name.
func MakeName(name, version string) string {
return fmt.Sprintf("%s/v%s/%s/%s", name, version, runtime.GOOS, runtime.Version())
}
// FileExist checks if a file exists at filePath.
func FileExist(filePath string) bool {
_, err := os.Stat(filePath)

@ -94,7 +94,6 @@ type Config struct {
DiscoveryV5 bool `toml:",omitempty"`
// Name sets the node name of this server.
// Use common.MakeName to create a name that follows existing conventions.
Name string `toml:"-"`
// BootstrapNodes are used to establish connectivity

Loading…
Cancel
Save