@@ -57,6 +57,7 @@ func (e *EngineClient) GetPayload(_ context.Context, _ [8]byte) (*pb.ExecutionPa
57
57
return e .ExecutionPayload , e .ErrGetPayload
58
58
}
59
59
60
+ // GetPayloadV2 --
60
61
func (e * EngineClient ) GetPayloadV2 (_ context.Context , _ [8 ]byte ) (* pb.ExecutionPayloadCapella , error ) {
61
62
return nil , nil
62
63
}
@@ -71,7 +72,7 @@ func (e *EngineClient) LatestExecutionBlock(_ context.Context) (*pb.ExecutionBlo
71
72
return e .ExecutionBlock , e .ErrLatestExecBlock
72
73
}
73
74
74
- // ExecutionBlockByHash --
75
+ // ExecutionBlockByHashBellatrix --
75
76
func (e * EngineClient ) ExecutionBlockByHashBellatrix (_ context.Context , h common.Hash , _ bool ) (* pb.ExecutionBlockBellatrix , error ) {
76
77
b , ok := e .BlockByHashMap [h ]
77
78
if ! ok {
@@ -80,6 +81,7 @@ func (e *EngineClient) ExecutionBlockByHashBellatrix(_ context.Context, h common
80
81
return b , e .ErrExecBlockByHash
81
82
}
82
83
84
+ // ReconstructFullBlock --
83
85
func (e * EngineClient ) ReconstructFullBlock (
84
86
_ context.Context , blindedBlock interfaces.SignedBeaconBlock ,
85
87
) (interfaces.SignedBeaconBlock , error ) {
@@ -98,6 +100,7 @@ func (e *EngineClient) ReconstructFullBlock(
98
100
return blocks .BuildSignedBeaconBlockFromExecutionPayload (blindedBlock , payload )
99
101
}
100
102
103
+ // ReconstructFullBellatrixBlockBatch --
101
104
func (e * EngineClient ) ReconstructFullBellatrixBlockBatch (
102
105
ctx context.Context , blindedBlocks []interfaces.SignedBeaconBlock ,
103
106
) ([]interfaces.SignedBeaconBlock , error ) {
0 commit comments