prysm-pulse/validator/accounts/accounts.go

18 lines
481 B
Go
Raw Normal View History

package accounts
import (
"github.com/prysmaticlabs/prysm/v4/validator/keymanager"
)
var (
errKeymanagerNotSupported = "keymanager kind not supported: %s"
// ErrCouldNotInitializeKeymanager informs about failed keymanager initialization
ErrCouldNotInitializeKeymanager = "could not initialize keymanager"
)
// DeleteConfig specifies parameters for the accounts delete command.
type DeleteConfig struct {
Keymanager keymanager.IKeymanager
DeletePublicKeys [][]byte
}