Skip to content

Commit

Permalink
cmd/geth: fix dir path in geth attach for yolov2 network (ethereum#21749
Browse files Browse the repository at this point in the history
)
  • Loading branch information
prestwich authored and enriquefynn committed Feb 15, 2021
1 parent a33319e commit b45c28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/geth/consolecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func remoteConsole(ctx *cli.Context) error {
} else if ctx.GlobalBool(utils.GoerliFlag.Name) {
path = filepath.Join(path, "goerli")
} else if ctx.GlobalBool(utils.YoloV2Flag.Name) {
path = filepath.Join(path, "yolo-v1")
path = filepath.Join(path, "yolo-v2")
}
}
endpoint = fmt.Sprintf("%s/geth.ipc", path)
Expand Down

0 comments on commit b45c28f

Please sign in to comment.