mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
Fix Accounts List Show Deposit Data When Coming From Eth2.0 Deposit CLI (#6811)
* amend accounts list when coming from launchpad * Merge refs/heads/master into fix-accounts-list * Merge refs/heads/master into fix-accounts-list * Merge refs/heads/master into fix-accounts-list * Merge refs/heads/master into fix-accounts-list * Merge refs/heads/master into fix-accounts-list
This commit is contained in:
parent
821f2ec029
commit
4dfe02d919
@ -110,7 +110,12 @@ func listDirectKeymanagerAccounts(
|
|||||||
}
|
}
|
||||||
enc, err := wallet.ReadFileAtPath(ctx, accountNames[i], direct.DepositDataFileName)
|
enc, err := wallet.ReadFileAtPath(ctx, accountNames[i], direct.DepositDataFileName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.Wrapf(err, "could not read file for account: %s", direct.DepositDataFileName)
|
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"),
|
||||||
|
)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
fmt.Printf(
|
fmt.Printf(
|
||||||
"%s %s\n",
|
"%s %s\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user