mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* Migrate Prysm repo to Offchain Labs organization ahead of Pectra upgrade v6 * Replace prysmaticlabs with OffchainLabs on general markdowns * Update mock * Gazelle and add mock.go to excluded generated mock file
18 lines
480 B
Go
18 lines
480 B
Go
package accounts
|
|
|
|
import (
|
|
"github.com/OffchainLabs/prysm/v6/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
|
|
}
|