2021-03-12 17:23:56 +00:00
|
|
|
package testutil
|
|
|
|
|
2021-03-16 15:00:05 +00:00
|
|
|
import (
|
2022-08-16 12:20:13 +00:00
|
|
|
types "github.com/prysmaticlabs/prysm/v3/consensus-types/primitives"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/encoding/bytesutil"
|
|
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
2021-03-16 15:00:05 +00:00
|
|
|
)
|
2021-03-12 17:23:56 +00:00
|
|
|
|
|
|
|
// ActiveKey represents a public key whose status is ACTIVE.
|
|
|
|
var ActiveKey = bytesutil.ToBytes48([]byte("active"))
|
2021-03-16 15:00:05 +00:00
|
|
|
|
|
|
|
// GenerateMultipleValidatorStatusResponse prepares a response from the passed in keys.
|
|
|
|
func GenerateMultipleValidatorStatusResponse(pubkeys [][]byte) *ethpb.MultipleValidatorStatusResponse {
|
|
|
|
resp := ðpb.MultipleValidatorStatusResponse{
|
|
|
|
PublicKeys: make([][]byte, len(pubkeys)),
|
|
|
|
Statuses: make([]*ethpb.ValidatorStatusResponse, len(pubkeys)),
|
|
|
|
Indices: make([]types.ValidatorIndex, len(pubkeys)),
|
|
|
|
}
|
|
|
|
for i, key := range pubkeys {
|
|
|
|
resp.PublicKeys[i] = key
|
|
|
|
resp.Statuses[i] = ðpb.ValidatorStatusResponse{
|
|
|
|
Status: ethpb.ValidatorStatus_UNKNOWN_STATUS,
|
|
|
|
}
|
|
|
|
resp.Indices[i] = types.ValidatorIndex(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp
|
|
|
|
}
|