mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
16 lines
419 B
Go
16 lines
419 B
Go
|
package accounts
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/prysm/validator/accounts/wallet"
|
||
|
"github.com/prysmaticlabs/prysm/validator/keymanager"
|
||
|
)
|
||
|
|
||
|
// AccountsConfig specifies parameters to run to delete, enable, disable accounts.
|
||
|
type AccountsConfig struct {
|
||
|
Wallet *wallet.Wallet
|
||
|
Keymanager keymanager.IKeymanager
|
||
|
DisablePublicKeys [][]byte
|
||
|
EnablePublicKeys [][]byte
|
||
|
DeletePublicKeys [][]byte
|
||
|
}
|