cmd/geth: remove reference to monitor command (#22844)

'geth monitor' subcommand is no longer supported.
This commit is contained in:
Ceelog 2021-05-10 18:19:32 +08:00 committed by GitHub
parent 7ab7acfded
commit f19a679b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,7 +171,7 @@ func remoteConsole(ctx *cli.Context) error {
// dialRPC returns a RPC client which connects to the given endpoint.
// The check for empty endpoint implements the defaulting logic
// for "geth attach" and "geth monitor" with no argument.
// for "geth attach" with no argument.
func dialRPC(endpoint string) (*rpc.Client, error) {
if endpoint == "" {
endpoint = node.DefaultIPCEndpoint(clientIdentifier)