good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 1a55e20d authored by James Prestwich's avatar James Prestwich Committed by GitHub
Browse files

cmd/geth: fix dir path in geth attach for yolov2 network (#21749)

parent 7b748e55
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment