mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
23 lines
729 B
Go
23 lines
729 B
Go
package migration
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/eth/v1"
|
|
eth "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
func V1Alpha1ConnectionStateToV1(connState eth.ConnectionState) ethpb.ConnectionState {
|
|
alphaString := connState.String()
|
|
v1Value := ethpb.ConnectionState_value[alphaString]
|
|
return ethpb.ConnectionState(v1Value)
|
|
}
|
|
|
|
func V1Alpha1PeerDirectionToV1(peerDirection eth.PeerDirection) (ethpb.PeerDirection, error) {
|
|
alphaString := peerDirection.String()
|
|
if alphaString == eth.PeerDirection_UNKNOWN.String() {
|
|
return 0, errors.New("peer direction unknown")
|
|
}
|
|
v1Value := ethpb.PeerDirection_value[alphaString]
|
|
return ethpb.PeerDirection(v1Value), nil
|
|
}
|