mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 21:08:10 -05:00
* Update protos for new changes * Fix * Fix deps * Fix build * Include newer changes to ethapis * Fix * Fix import * Do not return unconnected peers
23 lines
755 B
Go
23 lines
755 B
Go
package migration
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1"
|
|
ethpb_alpha "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
)
|
|
|
|
func V1Alpha1ConnectionStateToV1(connState ethpb_alpha.ConnectionState) ethpb.ConnectionState {
|
|
alphaString := connState.String()
|
|
v1Value := ethpb.ConnectionState_value[alphaString]
|
|
return ethpb.ConnectionState(v1Value)
|
|
}
|
|
|
|
func V1Alpha1PeerDirectionToV1(peerDirection ethpb_alpha.PeerDirection) (ethpb.PeerDirection, error) {
|
|
alphaString := peerDirection.String()
|
|
if alphaString == ethpb_alpha.PeerDirection_UNKNOWN.String() {
|
|
return 0, errors.New("peer direction unknown")
|
|
}
|
|
v1Value := ethpb.PeerDirection_value[alphaString]
|
|
return ethpb.PeerDirection(v1Value), nil
|
|
}
|