Merge pull request #222 from chuwt/chuwt-1029

Fix default attach endpoint
This commit is contained in:
Sandeep Sreenath 2022-04-20 15:31:47 +05:30 committed by GitHub
commit 7ff6869d25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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