From 4a549ffe2b6674cd8df2cce395bc3b4a6b446260 Mon Sep 17 00:00:00 2001 From: Raul Jordan Date: Fri, 25 Sep 2020 13:24:31 -0500 Subject: [PATCH] Warn About Deprecation of Accounts-V1 Within the Next 2 Releases (#7348) * deprecation of accounts v1 error log --- shared/featureconfig/config.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shared/featureconfig/config.go b/shared/featureconfig/config.go index 260ff3fc76b7..077082ee675c 100644 --- a/shared/featureconfig/config.go +++ b/shared/featureconfig/config.go @@ -322,6 +322,11 @@ func ConfigureValidator(ctx *cli.Context) { cfg.EnableAccountsV2 = true if ctx.Bool(disableAccountsV2.Name) { log.Warn("Disabling v2 of Prysm validator accounts") + log.Error( + "Accounts v1 will be fully deprecated in Prysm within the next 2 releases! If you are still " + + "using this functionality, please begin to upgrade by creating a v2 wallet. More information can be " + + "found in our docs portal https://docs.prylabs.network/docs/wallet/introduction/", + ) cfg.EnableAccountsV2 = false } if ctx.Bool(enableExternalSlasherProtectionFlag.Name) {