mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
ade7d705ec
* Migrating Keymanager account list functionality into each keymanager type * Addressing review comments * Adding newline at end of BUILD.bazel * bazel run //:gazelle -- fix * account deleter cleanup * bazel run //:gazelle -- fix * remove stale logging statement * adding deleter interface to mock functions * fixing deepsource findings * go.sum * bazel run //:gazelle -- fix * go mod t-dy -compat=1.17 Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com> Co-authored-by: prestonvanloon <preston@prysmaticlabs.com>
18 lines
478 B
Go
18 lines
478 B
Go
package accounts
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/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
|
|
}
|