From b6fffe33e296bddaa3401263c15ee5a1e836bd32 Mon Sep 17 00:00:00 2001 From: Yurii Oleksyshyn Date: Thu, 7 Dec 2023 14:32:03 +0200 Subject: [PATCH] Updated comments --- .../executiondata/executiondata_grpc.pb.go | 30 ++++++++----------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/protobuf/go/flow/executiondata/executiondata_grpc.pb.go b/protobuf/go/flow/executiondata/executiondata_grpc.pb.go index 7ebf00d07..776b7bbdd 100644 --- a/protobuf/go/flow/executiondata/executiondata_grpc.pb.go +++ b/protobuf/go/flow/executiondata/executiondata_grpc.pb.go @@ -28,9 +28,8 @@ type ExecutionDataAPIClient interface { // - InvalidArgument is returned if the request contains an invalid block ID. // - NotFound is returned if the start block or execution data are not // currently available on the - // - // node. This may happen if the block was from a previous spork, or if the - // block has yet not been received. + // node. This may happen if the block was from a previous spork, or if the + // block has yet not been received. GetExecutionDataByBlockID(ctx context.Context, in *GetExecutionDataByBlockIDRequest, opts ...grpc.CallOption) (*GetExecutionDataByBlockIDResponse, error) // SubscribeExecutionData streams execution data for all blocks starting at // the requested start block, up until the latest available block. Once the @@ -42,9 +41,8 @@ type ExecutionDataAPIClient interface { // block. // - NotFound is returned if the start block is not currently available on the // node. This may - // - // happen if the block was from a previous spork, or if the block has yet - // not been received. + // happen if the block was from a previous spork, or if the block has yet + // not been received. SubscribeExecutionData(ctx context.Context, in *SubscribeExecutionDataRequest, opts ...grpc.CallOption) (ExecutionDataAPI_SubscribeExecutionDataClient, error) // SubscribeEvents streams events for all blocks starting at the requested // start block, up until the latest available block. Once the latest is @@ -66,9 +64,8 @@ type ExecutionDataAPIClient interface { // EventFilter or start block. // - NotFound is returned if the start block is not currently available on the // node. This may - // - // happen if the block was from a previous spork, or if the block has yet - // not been received. + // happen if the block was from a previous spork, or if the block has yet + // not been received. SubscribeEvents(ctx context.Context, in *SubscribeEventsRequest, opts ...grpc.CallOption) (ExecutionDataAPI_SubscribeEventsClient, error) // GetRegisterValues gets the values for the given register IDs as of the given block height GetRegisterValues(ctx context.Context, in *GetRegisterValuesRequest, opts ...grpc.CallOption) (*GetRegisterValuesResponse, error) @@ -174,9 +171,8 @@ type ExecutionDataAPIServer interface { // - InvalidArgument is returned if the request contains an invalid block ID. // - NotFound is returned if the start block or execution data are not // currently available on the - // - // node. This may happen if the block was from a previous spork, or if the - // block has yet not been received. + // node. This may happen if the block was from a previous spork, or if the + // block has yet not been received. GetExecutionDataByBlockID(context.Context, *GetExecutionDataByBlockIDRequest) (*GetExecutionDataByBlockIDResponse, error) // SubscribeExecutionData streams execution data for all blocks starting at // the requested start block, up until the latest available block. Once the @@ -188,9 +184,8 @@ type ExecutionDataAPIServer interface { // block. // - NotFound is returned if the start block is not currently available on the // node. This may - // - // happen if the block was from a previous spork, or if the block has yet - // not been received. + // happen if the block was from a previous spork, or if the block has yet + // not been received. SubscribeExecutionData(*SubscribeExecutionDataRequest, ExecutionDataAPI_SubscribeExecutionDataServer) error // SubscribeEvents streams events for all blocks starting at the requested // start block, up until the latest available block. Once the latest is @@ -212,9 +207,8 @@ type ExecutionDataAPIServer interface { // EventFilter or start block. // - NotFound is returned if the start block is not currently available on the // node. This may - // - // happen if the block was from a previous spork, or if the block has yet - // not been received. + // happen if the block was from a previous spork, or if the block has yet + // not been received. SubscribeEvents(*SubscribeEventsRequest, ExecutionDataAPI_SubscribeEventsServer) error // GetRegisterValues gets the values for the given register IDs as of the given block height GetRegisterValues(context.Context, *GetRegisterValuesRequest) (*GetRegisterValuesResponse, error)