Skip to content

Commit

Permalink
Warn About Deprecation of Accounts-V1 Within the Next 2 Releases (#7348)
Browse files Browse the repository at this point in the history
* deprecation of accounts v1 error log
  • Loading branch information
rauljordan authored Sep 25, 2020
1 parent d138c60 commit 4a549ff
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions shared/featureconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4a549ff

Please sign in to comment.