mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 07:03:58 -05:00
18 lines
480 B
Go
18 lines
480 B
Go
package accounts
|
|
|
|
import (
|
|
"github.com/OffchainLabs/prysm/v7/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
|
|
}
|