removing show deposit data flag (#13618)

* removing show deposit data flag

* removing flag insted of deprecating

* fixing test

* fixing test
This commit is contained in:
james-prysm
2024-02-15 13:49:50 -06:00
committed by GitHub
parent 50d1961e52
commit 3a2734f249
9 changed files with 2 additions and 38 deletions

View File

@@ -427,15 +427,6 @@ func (km *Keymanager) ListKeymanagerAccounts(ctx context.Context, cfg keymanager
fmt.Printf("%s %#x\n", au.BrightRed("[validating private key]").Bold(), privateKeys[i])
}
}
if !cfg.ShowDepositData {
continue
}
fmt.Printf(
"%s\n",
au.BrightRed("If you imported your account coming from the eth2 launchpad, you will find your "+
"deposit_data.json in the eth2.0-deposit-cli's validator_keys folder"),
)
fmt.Println("")
}
fmt.Println("")
return nil

View File

@@ -89,7 +89,6 @@ type PublicKeyDeleter interface {
}
type ListKeymanagerAccountConfig struct {
ShowDepositData bool
ShowPrivateKeys bool
WalletAccountsDir string
KeymanagerConfigFileName string