From f26ce17330ef465ab0e713a0586ea0b767198121 Mon Sep 17 00:00:00 2001 From: Paul Leydier Date: Tue, 6 Jun 2023 17:13:38 -0400 Subject: [PATCH] replace broken link in error message --- rocketpool-cli/service/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocketpool-cli/service/service.go b/rocketpool-cli/service/service.go index b7add47ad..dabca7d5b 100644 --- a/rocketpool-cli/service/service.go +++ b/rocketpool-cli/service/service.go @@ -331,7 +331,7 @@ func configureService(c *cli.Context) error { err = changeNetworks(c, rp, fmt.Sprintf("%s%s", prefix, ApiContainerSuffix)) if err != nil { - fmt.Printf("%s%s%s\nThe Smartnode could not automatically change networks for you, so you will have to run the steps manually. Please follow the steps laid out in the Node Operator's guide (https://docs.rocketpool.net/guides/node/mainnet.html).\n", colorRed, err.Error(), colorReset) + fmt.Printf("%s%s%s\nThe Smartnode could not automatically change networks for you, so you will have to run the steps manually. Please follow the steps laid out in the Node Operator's guide (https://docs.rocketpool.net/guides/node/docker.html).\n", colorRed, err.Error(), colorReset) } return nil }