mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
386b69f473
* fix incorrect exported name in comments * add comments to exported methods
20 lines
549 B
Go
20 lines
549 B
Go
package accounts
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/validator/accounts/wallet"
|
|
"github.com/prysmaticlabs/prysm/validator/keymanager"
|
|
)
|
|
|
|
var (
|
|
errKeymanagerNotSupported = "keymanager kind not supported: %s"
|
|
// ErrCouldNotInitializeKeymanager informs about failed keymanager initialization
|
|
ErrCouldNotInitializeKeymanager = "could not initialize keymanager"
|
|
)
|
|
|
|
// Config specifies parameters for accounts commands.
|
|
type Config struct {
|
|
Wallet *wallet.Wallet
|
|
Keymanager keymanager.IKeymanager
|
|
DeletePublicKeys [][]byte
|
|
}
|