mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
23 lines
729 B
Go
23 lines
729 B
Go
package migration
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/eth/v1"
|
|
eth "github.com/prysmaticlabs/prysm/v4/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
|
|
}
|