From a090751c8c86c3049b59670f53f54732845e3751 Mon Sep 17 00:00:00 2001 From: james-prysm <90280386+james-prysm@users.noreply.github.com> Date: Tue, 18 Apr 2023 22:46:27 -0500 Subject: [PATCH] removing phrasing on not being able to withdraw (#12306) --- validator/accounts/accounts_helper.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/validator/accounts/accounts_helper.go b/validator/accounts/accounts_helper.go index c9ca8f8a0..3f7395a0a 100644 --- a/validator/accounts/accounts_helper.go +++ b/validator/accounts/accounts_helper.go @@ -203,10 +203,9 @@ func FilterExitAccountsFromUserInput( } promptHeader := au.Red("===============IMPORTANT===============") - promptDescription := "Withdrawing funds is not yet possible. " + - "Please navigate to the following website and make sure you understand the current implications " + + promptDescription := "Please navigate to the following website and make sure you understand the current implications " + "of a voluntary exit before making the final decision:" - promptURL := au.Blue("https://docs.prylabs.network/docs/wallet/exiting-a-validator/#withdrawal-delay-warning") + promptURL := au.Blue("https://docs.prylabs.network/docs/wallet/exiting-a-validator") promptQuestion := "If you still want to continue with the voluntary exit, please input a phrase found at the above URL" promptText := fmt.Sprintf("%s\n%s\n%s\n%s", promptHeader, promptDescription, promptURL, promptQuestion) resp, err := prompt.ValidatePrompt(r, promptText, func(input string) error {