Fix default attach endpoint

This commit is contained in:
chuwt 2021-10-29 22:15:35 +08:00
parent f94c7ddd6f
commit b86a566f8e

View file

@ -139,7 +139,7 @@ func remoteConsole(ctx *cli.Context) error {
path = filepath.Join(homeDir, "/.bor/data")
}
}
endpoint = fmt.Sprintf("%s/geth.ipc", path)
endpoint = fmt.Sprintf("%s/bor.ipc", path)
}
client, err := dialRPC(endpoint)
if err != nil {