From 9bca3f863f35e76db069fab29b91198ae043826b Mon Sep 17 00:00:00 2001 From: Andrii Date: Thu, 2 Nov 2023 15:16:52 +0200 Subject: [PATCH 1/2] Updated protobuf to include new method --- protobuf/flow/execution/execution.proto | 9 + protobuf/go/flow/execution/execution.pb.go | 175 +++++++++++------- .../go/flow/execution/execution_grpc.pb.go | 40 ++++ .../go/flow/executiondata/executiondata.pb.go | 3 - .../executiondata/executiondata_grpc.pb.go | 30 ++- 5 files changed, 170 insertions(+), 87 deletions(-) diff --git a/protobuf/flow/execution/execution.proto b/protobuf/flow/execution/execution.proto index f6957e6e1..c0fe63bea 100644 --- a/protobuf/flow/execution/execution.proto +++ b/protobuf/flow/execution/execution.proto @@ -50,6 +50,11 @@ service ExecutionAPI { rpc GetTransactionResultsByBlockID(GetTransactionsByBlockIDRequest) returns (GetTransactionResultsResponse); + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the + // block ordered by transaction index + rpc GetTransactionErrorMessagesByBlockID(GetTransactionsByBlockIDRequest) + returns (GetTransactionErrorMessagesResponse); + // Registers // GetRegisterAtBlockID collects a register at the block with the given ID (if @@ -141,6 +146,10 @@ message GetTransactionResultsResponse { entities.EventEncodingVersion event_encoding_version = 2; } +message GetTransactionErrorMessagesResponse { + repeated string error_messages = 1; +} + // Registers message GetRegisterAtBlockIDRequest { diff --git a/protobuf/go/flow/execution/execution.pb.go b/protobuf/go/flow/execution/execution.pb.go index ca72ff03f..5dbc651d0 100644 --- a/protobuf/go/flow/execution/execution.pb.go +++ b/protobuf/go/flow/execution/execution.pb.go @@ -655,6 +655,45 @@ func (m *GetTransactionResultsResponse) GetEventEncodingVersion() entities.Event return entities.EventEncodingVersion_JSON_CDC_V0 } +type GetTransactionErrorMessagesResponse struct { + ErrorMessages []string `protobuf:"bytes,1,rep,name=error_messages,json=errorMessages,proto3" json:"error_messages,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionErrorMessagesResponse) Reset() { *m = GetTransactionErrorMessagesResponse{} } +func (m *GetTransactionErrorMessagesResponse) String() string { return proto.CompactTextString(m) } +func (*GetTransactionErrorMessagesResponse) ProtoMessage() {} +func (*GetTransactionErrorMessagesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{13} +} + +func (m *GetTransactionErrorMessagesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionErrorMessagesResponse.Unmarshal(m, b) +} +func (m *GetTransactionErrorMessagesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionErrorMessagesResponse.Marshal(b, m, deterministic) +} +func (m *GetTransactionErrorMessagesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionErrorMessagesResponse.Merge(m, src) +} +func (m *GetTransactionErrorMessagesResponse) XXX_Size() int { + return xxx_messageInfo_GetTransactionErrorMessagesResponse.Size(m) +} +func (m *GetTransactionErrorMessagesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionErrorMessagesResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionErrorMessagesResponse proto.InternalMessageInfo + +func (m *GetTransactionErrorMessagesResponse) GetErrorMessages() []string { + if m != nil { + return m.ErrorMessages + } + return nil +} + type GetRegisterAtBlockIDRequest struct { BlockId []byte `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` RegisterOwner []byte `protobuf:"bytes,2,opt,name=register_owner,json=registerOwner,proto3" json:"register_owner,omitempty"` @@ -669,7 +708,7 @@ func (m *GetRegisterAtBlockIDRequest) Reset() { *m = GetRegisterAtBlockI func (m *GetRegisterAtBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*GetRegisterAtBlockIDRequest) ProtoMessage() {} func (*GetRegisterAtBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{13} + return fileDescriptor_699624211ed46c53, []int{14} } func (m *GetRegisterAtBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -722,7 +761,7 @@ func (m *GetRegisterAtBlockIDResponse) Reset() { *m = GetRegisterAtBlock func (m *GetRegisterAtBlockIDResponse) String() string { return proto.CompactTextString(m) } func (*GetRegisterAtBlockIDResponse) ProtoMessage() {} func (*GetRegisterAtBlockIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{14} + return fileDescriptor_699624211ed46c53, []int{15} } func (m *GetRegisterAtBlockIDResponse) XXX_Unmarshal(b []byte) error { @@ -761,7 +800,7 @@ func (m *GetLatestBlockHeaderRequest) Reset() { *m = GetLatestBlockHeade func (m *GetLatestBlockHeaderRequest) String() string { return proto.CompactTextString(m) } func (*GetLatestBlockHeaderRequest) ProtoMessage() {} func (*GetLatestBlockHeaderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{15} + return fileDescriptor_699624211ed46c53, []int{16} } func (m *GetLatestBlockHeaderRequest) XXX_Unmarshal(b []byte) error { @@ -800,7 +839,7 @@ func (m *GetBlockHeaderByIDRequest) Reset() { *m = GetBlockHeaderByIDReq func (m *GetBlockHeaderByIDRequest) String() string { return proto.CompactTextString(m) } func (*GetBlockHeaderByIDRequest) ProtoMessage() {} func (*GetBlockHeaderByIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{16} + return fileDescriptor_699624211ed46c53, []int{17} } func (m *GetBlockHeaderByIDRequest) XXX_Unmarshal(b []byte) error { @@ -839,7 +878,7 @@ func (m *BlockHeaderResponse) Reset() { *m = BlockHeaderResponse{} } func (m *BlockHeaderResponse) String() string { return proto.CompactTextString(m) } func (*BlockHeaderResponse) ProtoMessage() {} func (*BlockHeaderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{17} + return fileDescriptor_699624211ed46c53, []int{18} } func (m *BlockHeaderResponse) XXX_Unmarshal(b []byte) error { @@ -882,6 +921,7 @@ func init() { proto.RegisterType((*GetTransactionResultResponse)(nil), "flow.execution.GetTransactionResultResponse") proto.RegisterType((*GetTransactionsByBlockIDRequest)(nil), "flow.execution.GetTransactionsByBlockIDRequest") proto.RegisterType((*GetTransactionResultsResponse)(nil), "flow.execution.GetTransactionResultsResponse") + proto.RegisterType((*GetTransactionErrorMessagesResponse)(nil), "flow.execution.GetTransactionErrorMessagesResponse") proto.RegisterType((*GetRegisterAtBlockIDRequest)(nil), "flow.execution.GetRegisterAtBlockIDRequest") proto.RegisterType((*GetRegisterAtBlockIDResponse)(nil), "flow.execution.GetRegisterAtBlockIDResponse") proto.RegisterType((*GetLatestBlockHeaderRequest)(nil), "flow.execution.GetLatestBlockHeaderRequest") @@ -892,65 +932,68 @@ func init() { func init() { proto.RegisterFile("flow/execution/execution.proto", fileDescriptor_699624211ed46c53) } var fileDescriptor_699624211ed46c53 = []byte{ - // 954 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x5f, 0x6f, 0xe3, 0x44, - 0x10, 0x57, 0xda, 0xb4, 0x4d, 0x26, 0x7f, 0x84, 0xb6, 0x51, 0x95, 0x3a, 0xfd, 0x87, 0xab, 0x93, - 0x0a, 0xed, 0x39, 0x90, 0x43, 0x3c, 0x20, 0x5e, 0x1a, 0x28, 0xbd, 0x00, 0x47, 0x8f, 0x3d, 0x84, - 0x04, 0x12, 0x8a, 0x5c, 0x7b, 0xce, 0xb5, 0x2e, 0xf5, 0xe6, 0xbc, 0xeb, 0xf6, 0xf2, 0xc6, 0x23, - 0x9f, 0x8a, 0xef, 0xc1, 0x23, 0x1f, 0x80, 0xef, 0x80, 0xbc, 0xbb, 0x4e, 0xe2, 0x64, 0x93, 0x4b, - 0x84, 0x78, 0xa9, 0xbc, 0xb3, 0xbf, 0x99, 0xdf, 0xcc, 0xec, 0xfc, 0x69, 0xe0, 0xe8, 0xf5, 0x80, - 0x3d, 0xb6, 0xf1, 0x1d, 0x7a, 0x89, 0x08, 0x59, 0x34, 0xf9, 0x72, 0x86, 0x31, 0x13, 0x8c, 0xd4, - 0xd3, 0x7b, 0x67, 0x2c, 0xb5, 0x5a, 0x0a, 0x1f, 0x89, 0x50, 0x84, 0xc8, 0xdb, 0xae, 0xe7, 0xb1, - 0x24, 0x12, 0x0a, 0x6c, 0x9d, 0xe4, 0x2f, 0x6f, 0x07, 0xcc, 0x7b, 0xd3, 0xbf, 0x43, 0xd7, 0xc7, - 0x58, 0x23, 0xf6, 0xf3, 0x08, 0x7c, 0xc0, 0xb1, 0xf2, 0x71, 0xfe, 0x4a, 0xc4, 0x6e, 0xc4, 0x5d, - 0x6f, 0xe2, 0x8a, 0x5d, 0x83, 0xca, 0xcb, 0x30, 0x0a, 0x28, 0xbe, 0x4d, 0x90, 0x0b, 0xbb, 0x0e, - 0x55, 0x75, 0xe4, 0x43, 0x16, 0x71, 0xb4, 0x7f, 0x04, 0xeb, 0x1a, 0xc5, 0xa5, 0x72, 0xe8, 0x52, - 0x74, 0x53, 0xf2, 0xde, 0xd7, 0x1a, 0x4d, 0xf6, 0xa1, 0xa4, 0xdc, 0x09, 0xfd, 0x66, 0xe1, 0xa4, - 0x70, 0x56, 0xa5, 0x3b, 0xf2, 0xdc, 0xf3, 0x49, 0x13, 0x76, 0x5c, 0xdf, 0x8f, 0x91, 0xf3, 0xe6, - 0x86, 0xba, 0xd1, 0x47, 0xfb, 0x06, 0x5a, 0x46, 0x93, 0x8a, 0x91, 0x7c, 0x02, 0x3b, 0x3a, 0x7e, - 0x69, 0xb2, 0xd2, 0xd9, 0x73, 0x54, 0xb6, 0x74, 0x0c, 0x8e, 0xd6, 0xa4, 0x19, 0xcc, 0x1e, 0xc2, - 0xe1, 0x95, 0x4c, 0x25, 0xbe, 0xf2, 0xe2, 0x70, 0xb8, 0x96, 0x9b, 0x7b, 0xb0, 0xcd, 0xa5, 0x92, - 0xf6, 0x52, 0x9f, 0xc8, 0x01, 0x94, 0xdd, 0x38, 0x48, 0xee, 0x31, 0x12, 0xbc, 0xb9, 0x79, 0xb2, - 0x79, 0x56, 0xa5, 0x13, 0x81, 0xfd, 0x39, 0x1c, 0x2d, 0x62, 0xd4, 0x51, 0x34, 0x60, 0xeb, 0xc1, - 0x1d, 0x24, 0xa8, 0xf9, 0xd4, 0xc1, 0xfe, 0x73, 0x03, 0x0e, 0xae, 0x51, 0x5c, 0xa5, 0x0f, 0xc4, - 0xbf, 0x61, 0xb1, 0xd6, 0xe2, 0x63, 0xb5, 0x17, 0xb0, 0x13, 0x23, 0x4f, 0x06, 0x82, 0x37, 0x0b, - 0x27, 0x9b, 0x67, 0x95, 0xce, 0x33, 0x27, 0x5f, 0x2a, 0xce, 0x32, 0x75, 0x87, 0x4a, 0x5d, 0x9a, - 0xd9, 0x20, 0xbf, 0xc0, 0x9e, 0x2c, 0x86, 0x3e, 0x46, 0x1e, 0xf3, 0xc3, 0x28, 0xe8, 0x3f, 0x60, - 0xcc, 0x43, 0x16, 0xc9, 0x68, 0xeb, 0x9d, 0xd3, 0x99, 0xd4, 0x4a, 0xcb, 0x57, 0x1a, 0xfb, 0xb3, - 0x82, 0xd2, 0x06, 0x1a, 0xa4, 0x96, 0x80, 0x6d, 0xc5, 0xb6, 0x2c, 0xbb, 0x1f, 0x42, 0x35, 0x2b, - 0xd7, 0x30, 0xb8, 0x53, 0x39, 0x2e, 0xd2, 0x8a, 0x94, 0x3d, 0x97, 0x22, 0x72, 0x01, 0xdb, 0xd2, - 0xbe, 0xca, 0x72, 0xa5, 0xd3, 0x30, 0xb9, 0x44, 0x35, 0xc6, 0xfe, 0x41, 0xd6, 0x8e, 0x21, 0x01, - 0xea, 0xa1, 0x09, 0x14, 0xc5, 0x68, 0xa8, 0x92, 0x5e, 0xa6, 0xf2, 0x9b, 0xb4, 0xa0, 0x9c, 0xb9, - 0x97, 0x96, 0x62, 0xfa, 0x92, 0x25, 0xed, 0x1f, 0xb7, 0xfb, 0xd2, 0xde, 0x4f, 0x93, 0xae, 0xd0, - 0x19, 0x7c, 0x7f, 0xe1, 0x3c, 0x81, 0xfa, 0x54, 0x33, 0xa5, 0x00, 0x55, 0x40, 0xb5, 0x29, 0x69, - 0xcf, 0xb7, 0x6f, 0xe4, 0x83, 0x4f, 0x11, 0x74, 0x47, 0xbd, 0xc8, 0xc7, 0x77, 0x2b, 0x30, 0x34, - 0x60, 0x2b, 0x4c, 0xa1, 0xd2, 0x70, 0x8d, 0xaa, 0x83, 0xfd, 0x4f, 0x61, 0xd6, 0x62, 0xe6, 0xb2, - 0x2e, 0xa1, 0x63, 0xa8, 0x70, 0xe1, 0x8a, 0x84, 0xf7, 0x3d, 0xe6, 0xab, 0x54, 0xd4, 0x28, 0x28, - 0xd1, 0x57, 0xcc, 0x47, 0x72, 0x0a, 0x35, 0x8c, 0x63, 0x16, 0xf7, 0xef, 0x91, 0x73, 0x37, 0x40, - 0x69, 0xbf, 0x4c, 0xab, 0x52, 0xf8, 0x42, 0xc9, 0xd6, 0x7b, 0x96, 0x25, 0x75, 0x56, 0xfc, 0x8f, - 0x75, 0x66, 0x7f, 0x09, 0xc7, 0xf9, 0x70, 0x79, 0x77, 0xb4, 0x72, 0x7b, 0xdb, 0x7f, 0x15, 0xe0, - 0xd0, 0x94, 0xad, 0x49, 0xc7, 0xfd, 0x06, 0xbb, 0xd3, 0xef, 0x98, 0xef, 0xbe, 0x0b, 0x43, 0xf7, - 0x2d, 0xcc, 0x3c, 0x25, 0x62, 0x8e, 0xe6, 0x7f, 0xec, 0x40, 0xfb, 0x8f, 0x82, 0x2c, 0x5e, 0x8a, - 0x41, 0xc8, 0x05, 0xc6, 0xeb, 0x4c, 0xbd, 0x27, 0x50, 0x8f, 0xb5, 0x5a, 0x9f, 0x3d, 0x46, 0x18, - 0x67, 0xc5, 0x9b, 0x49, 0x6f, 0x52, 0x61, 0xda, 0xbe, 0x63, 0xd8, 0x1b, 0x1c, 0xc9, 0xc7, 0xac, - 0xd2, 0x4a, 0x26, 0xfb, 0x0e, 0x47, 0xdf, 0x16, 0x4b, 0x9b, 0x1f, 0x14, 0xed, 0xcf, 0x64, 0x4d, - 0x1a, 0x3c, 0x59, 0x3a, 0x0d, 0xbf, 0x90, 0xfe, 0x7f, 0xef, 0x0a, 0xe4, 0x4a, 0xe3, 0xb9, 0x5c, - 0x6a, 0x99, 0xff, 0x2d, 0x28, 0x87, 0xbc, 0xcf, 0xd1, 0x1d, 0xa0, 0x0a, 0xa0, 0x44, 0x4b, 0x21, - 0x7f, 0x25, 0xcf, 0xf6, 0x39, 0xec, 0x5f, 0xe3, 0xb4, 0x56, 0x77, 0x34, 0x89, 0xbc, 0x0e, 0x1b, - 0xe3, 0x98, 0x37, 0x42, 0xdf, 0xbe, 0x86, 0xdd, 0x9c, 0xfd, 0xf1, 0xa6, 0xd9, 0x92, 0x09, 0xd1, - 0x7b, 0xc6, 0x9a, 0x79, 0x8a, 0x69, 0x15, 0x05, 0xec, 0xfc, 0x5d, 0x82, 0xea, 0x55, 0x56, 0x0c, - 0x97, 0x2f, 0x7b, 0xe4, 0x12, 0x8a, 0xe9, 0xba, 0x24, 0xad, 0xd9, 0x42, 0x99, 0xda, 0xa9, 0xd6, - 0x81, 0xf9, 0x52, 0x7b, 0x11, 0xc1, 0xae, 0x61, 0x1d, 0x92, 0x8f, 0x0d, 0xa5, 0xb7, 0x60, 0x0d, - 0x5b, 0xe7, 0x2b, 0x61, 0x35, 0xdf, 0x23, 0xec, 0x99, 0x77, 0x17, 0x79, 0x3a, 0x6b, 0x66, 0xe9, - 0x56, 0xb5, 0x9c, 0x55, 0xe1, 0x9a, 0xf8, 0x2d, 0x34, 0x4c, 0xb3, 0x9b, 0x9c, 0xaf, 0xb6, 0xe2, - 0x14, 0xe9, 0xc5, 0x3a, 0xfb, 0x50, 0x53, 0xce, 0x75, 0xac, 0x91, 0x72, 0xd1, 0x12, 0xb0, 0xd6, - 0x1a, 0x02, 0x64, 0x64, 0xde, 0x28, 0x7a, 0xec, 0x93, 0xf7, 0x18, 0xcb, 0x6f, 0x87, 0x35, 0xa9, - 0x7f, 0x2f, 0xc0, 0x91, 0x71, 0xd8, 0x8d, 0x27, 0x26, 0x69, 0x2f, 0x37, 0x38, 0x37, 0x5b, 0xad, - 0xa7, 0xab, 0x78, 0x30, 0x9b, 0xf0, 0xb9, 0x41, 0x60, 0x4c, 0xf8, 0xa2, 0xc1, 0x65, 0x8c, 0x7a, - 0xf1, 0x6c, 0xb9, 0x93, 0x94, 0x73, 0x53, 0xc4, 0x48, 0xb9, 0x68, 0xd6, 0x58, 0xa7, 0xb3, 0x60, - 0xd3, 0xbc, 0xf0, 0x81, 0xcc, 0xcf, 0x1c, 0xf2, 0x91, 0x81, 0xc7, 0x3c, 0x97, 0x56, 0x62, 0xe9, - 0x52, 0x38, 0x64, 0x71, 0xe0, 0xb0, 0x48, 0x62, 0xe5, 0x3f, 0xe9, 0xb7, 0xc9, 0xeb, 0x89, 0xd2, - 0xaf, 0x9f, 0x06, 0xa1, 0xb8, 0x4b, 0x6e, 0x1d, 0x8f, 0xdd, 0xb7, 0x15, 0xaa, 0x2d, 0xff, 0x64, - 0xd0, 0x76, 0xc0, 0xda, 0xf9, 0xdf, 0x1f, 0xb7, 0xdb, 0xf2, 0xee, 0xd9, 0xbf, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x2f, 0x60, 0xb0, 0xfc, 0x98, 0x0c, 0x00, 0x00, + // 994 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xdd, 0x6e, 0xe3, 0x44, + 0x14, 0x56, 0xda, 0xf4, 0x27, 0x27, 0x3f, 0x42, 0xd3, 0xa8, 0x4a, 0x9d, 0xfe, 0x31, 0xa5, 0x52, + 0xa1, 0x5d, 0x07, 0x52, 0xc4, 0x05, 0xe2, 0xa6, 0x81, 0xd0, 0x0d, 0xec, 0xd2, 0x65, 0x16, 0x21, + 0x81, 0x84, 0x22, 0x37, 0x9e, 0x75, 0xad, 0x4d, 0x3d, 0x59, 0xcf, 0xb8, 0xdd, 0xdc, 0x71, 0xc9, + 0x05, 0xcf, 0xc4, 0x7b, 0xf0, 0x10, 0x48, 0x3c, 0x02, 0xf2, 0xcc, 0x38, 0xb6, 0x93, 0x49, 0x36, + 0xd1, 0x8a, 0x9b, 0x28, 0x73, 0xe6, 0x3b, 0xe7, 0x3b, 0x73, 0x7e, 0x65, 0x38, 0x7c, 0x35, 0x64, + 0x8f, 0x2d, 0xfa, 0x96, 0x0e, 0x22, 0xe1, 0xb3, 0x20, 0xfd, 0x67, 0x8f, 0x42, 0x26, 0x18, 0xaa, + 0xc5, 0xf7, 0xf6, 0x44, 0x6a, 0x35, 0x15, 0x3e, 0x10, 0xbe, 0xf0, 0x29, 0x6f, 0x39, 0x83, 0x01, + 0x8b, 0x02, 0xa1, 0xc0, 0xd6, 0x71, 0xfe, 0xf2, 0x76, 0xc8, 0x06, 0xaf, 0xfb, 0x77, 0xd4, 0x71, + 0x69, 0xa8, 0x11, 0x7b, 0x79, 0x04, 0x7d, 0xa0, 0x13, 0xe5, 0xa3, 0xfc, 0x95, 0x08, 0x9d, 0x80, + 0x3b, 0x83, 0xd4, 0x15, 0x5c, 0x85, 0xf2, 0x0b, 0x3f, 0xf0, 0x08, 0x7d, 0x13, 0x51, 0x2e, 0x70, + 0x0d, 0x2a, 0xea, 0xc8, 0x47, 0x2c, 0xe0, 0x14, 0xff, 0x08, 0xd6, 0x35, 0x15, 0x57, 0xca, 0xa1, + 0x2b, 0xd1, 0x89, 0xc9, 0x7b, 0xdf, 0x68, 0x34, 0xda, 0x83, 0x6d, 0xe5, 0x8e, 0xef, 0x36, 0x0a, + 0xc7, 0x85, 0xb3, 0x0a, 0xd9, 0x92, 0xe7, 0x9e, 0x8b, 0x1a, 0xb0, 0xe5, 0xb8, 0x6e, 0x48, 0x39, + 0x6f, 0xac, 0xa9, 0x1b, 0x7d, 0xc4, 0x37, 0xd0, 0x34, 0x9a, 0x54, 0x8c, 0xe8, 0x53, 0xd8, 0xd2, + 0xef, 0x97, 0x26, 0xcb, 0xed, 0x5d, 0x5b, 0x45, 0x4b, 0xbf, 0xc1, 0xd6, 0x9a, 0x24, 0x81, 0xe1, + 0x11, 0x1c, 0x74, 0x65, 0x28, 0xe9, 0xcb, 0x41, 0xe8, 0x8f, 0x56, 0x72, 0x73, 0x17, 0x36, 0xb9, + 0x54, 0xd2, 0x5e, 0xea, 0x13, 0xda, 0x87, 0x92, 0x13, 0x7a, 0xd1, 0x3d, 0x0d, 0x04, 0x6f, 0xac, + 0x1f, 0xaf, 0x9f, 0x55, 0x48, 0x2a, 0xc0, 0x5f, 0xc0, 0xe1, 0x3c, 0x46, 0xfd, 0x8a, 0x3a, 0x6c, + 0x3c, 0x38, 0xc3, 0x88, 0x6a, 0x3e, 0x75, 0xc0, 0x7f, 0xad, 0xc1, 0xfe, 0x35, 0x15, 0xdd, 0x38, + 0x41, 0xfc, 0x5b, 0x16, 0x6a, 0x2d, 0x3e, 0x51, 0x7b, 0x0e, 0x5b, 0x21, 0xe5, 0xd1, 0x50, 0xf0, + 0x46, 0xe1, 0x78, 0xfd, 0xac, 0xdc, 0xbe, 0xb4, 0xf3, 0xa5, 0x62, 0x2f, 0x52, 0xb7, 0x89, 0xd4, + 0x25, 0x89, 0x0d, 0xf4, 0x0b, 0xec, 0xca, 0x62, 0xe8, 0xd3, 0x60, 0xc0, 0x5c, 0x3f, 0xf0, 0xfa, + 0x0f, 0x34, 0xe4, 0x3e, 0x0b, 0xe4, 0x6b, 0x6b, 0xed, 0x93, 0xa9, 0xd0, 0x4a, 0xcb, 0x5d, 0x8d, + 0xfd, 0x59, 0x41, 0x49, 0x9d, 0x1a, 0xa4, 0x96, 0x80, 0x4d, 0xc5, 0xb6, 0x28, 0xba, 0x1f, 0x42, + 0x25, 0x29, 0x57, 0xdf, 0xbb, 0x53, 0x31, 0x2e, 0x92, 0xb2, 0x94, 0x3d, 0x95, 0x22, 0x74, 0x01, + 0x9b, 0xd2, 0xbe, 0x8a, 0x72, 0xb9, 0x5d, 0x37, 0xb9, 0x44, 0x34, 0x06, 0xff, 0x20, 0x6b, 0xc7, + 0x10, 0x00, 0x95, 0x68, 0x04, 0x45, 0x31, 0x1e, 0xa9, 0xa0, 0x97, 0x88, 0xfc, 0x8f, 0x9a, 0x50, + 0x4a, 0xdc, 0x8b, 0x4b, 0x31, 0xce, 0xe4, 0xb6, 0xf6, 0x8f, 0xe3, 0xbe, 0xb4, 0xf7, 0x53, 0xda, + 0x15, 0x3a, 0x82, 0xef, 0x2e, 0x9c, 0x53, 0xa8, 0x65, 0x9a, 0x29, 0x06, 0xa8, 0x02, 0xaa, 0x66, + 0xa4, 0x3d, 0x17, 0xdf, 0xc8, 0x84, 0x67, 0x08, 0x3a, 0xe3, 0x5e, 0xe0, 0xd2, 0xb7, 0x4b, 0x30, + 0xd4, 0x61, 0xc3, 0x8f, 0xa1, 0xd2, 0x70, 0x95, 0xa8, 0x03, 0xfe, 0xa7, 0x30, 0x6d, 0x31, 0x71, + 0x59, 0x97, 0xd0, 0x11, 0x94, 0xb9, 0x70, 0x44, 0xc4, 0xfb, 0x03, 0xe6, 0xaa, 0x50, 0x54, 0x09, + 0x28, 0xd1, 0xd7, 0xcc, 0xa5, 0xe8, 0x04, 0xaa, 0x34, 0x0c, 0x59, 0xd8, 0xbf, 0xa7, 0x9c, 0x3b, + 0x1e, 0x95, 0xf6, 0x4b, 0xa4, 0x22, 0x85, 0xcf, 0x95, 0x6c, 0xb5, 0xb4, 0x2c, 0xa8, 0xb3, 0xe2, + 0x7b, 0xd6, 0x19, 0xfe, 0x0a, 0x8e, 0xf2, 0xcf, 0xe5, 0x9d, 0xf1, 0xd2, 0xed, 0x8d, 0xff, 0x2e, + 0xc0, 0x81, 0x29, 0x5a, 0x69, 0xc7, 0xfd, 0x06, 0x3b, 0xd9, 0x3c, 0xe6, 0xbb, 0xef, 0xc2, 0xd0, + 0x7d, 0x73, 0x23, 0x4f, 0x90, 0x98, 0xa1, 0xf9, 0x1f, 0x3b, 0x10, 0x3f, 0x83, 0x93, 0xbc, 0x3b, + 0xdd, 0x4c, 0x02, 0xd3, 0x07, 0x9e, 0x42, 0x2d, 0x97, 0x6e, 0xf5, 0xb6, 0x12, 0xa9, 0x66, 0xf3, + 0xcd, 0xf1, 0x1f, 0x05, 0xd9, 0x0a, 0x84, 0x7a, 0x3e, 0x17, 0x34, 0x5c, 0x65, 0x86, 0x9e, 0x42, + 0x2d, 0xd4, 0x6a, 0x7d, 0xf6, 0x18, 0xd0, 0x30, 0x69, 0x85, 0x44, 0x7a, 0x13, 0x0b, 0xe3, 0x61, + 0x30, 0x81, 0xbd, 0xa6, 0x63, 0x59, 0x1a, 0x15, 0x52, 0x4e, 0x64, 0xdf, 0xd3, 0xf1, 0x77, 0xc5, + 0xed, 0xf5, 0x0f, 0x8a, 0xf8, 0x73, 0x59, 0xe1, 0x06, 0x4f, 0x16, 0xce, 0xd6, 0x2f, 0xa5, 0xff, + 0xcf, 0x1c, 0x41, 0xb9, 0xd2, 0x78, 0x2a, 0x57, 0x64, 0xe2, 0x7f, 0x13, 0x4a, 0x3e, 0xef, 0x73, + 0xea, 0x0c, 0xa9, 0x7a, 0xc0, 0x36, 0xd9, 0xf6, 0xf9, 0x4b, 0x79, 0xc6, 0xe7, 0xb0, 0x77, 0x4d, + 0xb3, 0x5a, 0x9d, 0x71, 0xfa, 0xf2, 0x1a, 0xac, 0x4d, 0xde, 0xbc, 0xe6, 0xbb, 0xf8, 0x1a, 0x76, + 0x72, 0xf6, 0x27, 0x7b, 0x6b, 0x43, 0x06, 0x44, 0x6f, 0x2d, 0x6b, 0x2a, 0xb1, 0x59, 0x15, 0x05, + 0x6c, 0xff, 0x5b, 0x82, 0x4a, 0x37, 0x29, 0xad, 0xab, 0x17, 0x3d, 0x74, 0x05, 0xc5, 0x78, 0xf9, + 0xa2, 0xe6, 0x74, 0xd9, 0x65, 0x36, 0xb4, 0xb5, 0x6f, 0xbe, 0xd4, 0x5e, 0x04, 0xb0, 0x63, 0x58, + 0xae, 0xe8, 0x13, 0x43, 0x21, 0xcf, 0x59, 0xea, 0xd6, 0xf9, 0x52, 0x58, 0xcd, 0xf7, 0x08, 0xbb, + 0xe6, 0x4d, 0x88, 0x9e, 0x4c, 0x9b, 0x59, 0xb8, 0xa3, 0x2d, 0x7b, 0x59, 0xb8, 0x26, 0x7e, 0x03, + 0x75, 0xd3, 0x26, 0x40, 0xe7, 0xcb, 0x2d, 0x4c, 0x45, 0x7a, 0xb1, 0xca, 0x76, 0xd5, 0x94, 0x33, + 0xfd, 0x6f, 0xa4, 0x9c, 0xb7, 0x52, 0xac, 0x95, 0x46, 0x0a, 0x1a, 0x9b, 0xf7, 0x93, 0x5e, 0x22, + 0xe8, 0x1d, 0xc6, 0xf2, 0xbb, 0x66, 0x45, 0xea, 0xdf, 0x0b, 0x70, 0x68, 0x1c, 0x9d, 0x93, 0xf9, + 0x8b, 0x5a, 0x8b, 0x0d, 0xce, 0x4c, 0x6a, 0xeb, 0xc9, 0x32, 0x1e, 0xa4, 0x01, 0xff, 0xb3, 0x00, + 0x1f, 0x2d, 0x18, 0x71, 0xef, 0xe1, 0xc8, 0xe5, 0x62, 0x05, 0xf3, 0x24, 0x55, 0xf9, 0x9f, 0x99, + 0x4b, 0xc6, 0xfc, 0xcf, 0x9b, 0xa3, 0xc6, 0x24, 0xcc, 0x1f, 0x75, 0x77, 0x92, 0x72, 0x66, 0xa8, + 0x19, 0x29, 0xe7, 0x8d, 0x3e, 0xeb, 0x64, 0x1a, 0x6c, 0x1a, 0x5f, 0x2e, 0xa0, 0xd9, 0x11, 0x88, + 0x3e, 0x36, 0xf0, 0x98, 0xc7, 0xe4, 0x52, 0x2c, 0x1d, 0x02, 0x07, 0x2c, 0xf4, 0x6c, 0x16, 0x48, + 0xac, 0xfc, 0x02, 0xb9, 0x8d, 0x5e, 0xa5, 0x4a, 0xbf, 0x7e, 0xe6, 0xf9, 0xe2, 0x2e, 0xba, 0xb5, + 0x07, 0xec, 0xbe, 0xa5, 0x50, 0x2d, 0xf9, 0x93, 0x40, 0x5b, 0x1e, 0x6b, 0xe5, 0x3f, 0xae, 0x6e, + 0x37, 0xe5, 0xdd, 0xe5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0x9d, 0xfc, 0x68, 0x75, 0x0d, + 0x00, 0x00, } diff --git a/protobuf/go/flow/execution/execution_grpc.pb.go b/protobuf/go/flow/execution/execution_grpc.pb.go index 4d28a8959..41d272024 100644 --- a/protobuf/go/flow/execution/execution_grpc.pb.go +++ b/protobuf/go/flow/execution/execution_grpc.pb.go @@ -39,6 +39,9 @@ type ExecutionAPIClient interface { // GetTransactionResultByIndex gets the results of all transactions in the // block ordered by transaction index GetTransactionResultsByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionResultsResponse, error) + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the + // block ordered by transaction index + GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) // GetRegisterAtBlockID collects a register at the block with the given ID (if // available). GetRegisterAtBlockID(ctx context.Context, in *GetRegisterAtBlockIDRequest, opts ...grpc.CallOption) (*GetRegisterAtBlockIDResponse, error) @@ -119,6 +122,15 @@ func (c *executionAPIClient) GetTransactionResultsByBlockID(ctx context.Context, return out, nil } +func (c *executionAPIClient) GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) { + out := new(GetTransactionErrorMessagesResponse) + err := c.cc.Invoke(ctx, "/flow.execution.ExecutionAPI/GetTransactionErrorMessagesByBlockID", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *executionAPIClient) GetRegisterAtBlockID(ctx context.Context, in *GetRegisterAtBlockIDRequest, opts ...grpc.CallOption) (*GetRegisterAtBlockIDResponse, error) { out := new(GetRegisterAtBlockIDResponse) err := c.cc.Invoke(ctx, "/flow.execution.ExecutionAPI/GetRegisterAtBlockID", in, out, opts...) @@ -167,6 +179,9 @@ type ExecutionAPIServer interface { // GetTransactionResultByIndex gets the results of all transactions in the // block ordered by transaction index GetTransactionResultsByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionResultsResponse, error) + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the + // block ordered by transaction index + GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) // GetRegisterAtBlockID collects a register at the block with the given ID (if // available). GetRegisterAtBlockID(context.Context, *GetRegisterAtBlockIDRequest) (*GetRegisterAtBlockIDResponse, error) @@ -201,6 +216,9 @@ func (UnimplementedExecutionAPIServer) GetTransactionResultByIndex(context.Conte func (UnimplementedExecutionAPIServer) GetTransactionResultsByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionResultsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetTransactionResultsByBlockID not implemented") } +func (UnimplementedExecutionAPIServer) GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetTransactionErrorMessagesByBlockID not implemented") +} func (UnimplementedExecutionAPIServer) GetRegisterAtBlockID(context.Context, *GetRegisterAtBlockIDRequest) (*GetRegisterAtBlockIDResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetRegisterAtBlockID not implemented") } @@ -348,6 +366,24 @@ func _ExecutionAPI_GetTransactionResultsByBlockID_Handler(srv interface{}, ctx c return interceptor(ctx, in, info, handler) } +func _ExecutionAPI_GetTransactionErrorMessagesByBlockID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetTransactionsByBlockIDRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ExecutionAPIServer).GetTransactionErrorMessagesByBlockID(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/flow.execution.ExecutionAPI/GetTransactionErrorMessagesByBlockID", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ExecutionAPIServer).GetTransactionErrorMessagesByBlockID(ctx, req.(*GetTransactionsByBlockIDRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ExecutionAPI_GetRegisterAtBlockID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetRegisterAtBlockIDRequest) if err := dec(in); err != nil { @@ -437,6 +473,10 @@ var ExecutionAPI_ServiceDesc = grpc.ServiceDesc{ MethodName: "GetTransactionResultsByBlockID", Handler: _ExecutionAPI_GetTransactionResultsByBlockID_Handler, }, + { + MethodName: "GetTransactionErrorMessagesByBlockID", + Handler: _ExecutionAPI_GetTransactionErrorMessagesByBlockID_Handler, + }, { MethodName: "GetRegisterAtBlockID", Handler: _ExecutionAPI_GetRegisterAtBlockID_Handler, diff --git a/protobuf/go/flow/executiondata/executiondata.pb.go b/protobuf/go/flow/executiondata/executiondata.pb.go index aa0ca6a45..33bd68cbf 100644 --- a/protobuf/go/flow/executiondata/executiondata.pb.go +++ b/protobuf/go/flow/executiondata/executiondata.pb.go @@ -30,7 +30,6 @@ type GetExecutionDataByBlockIDRequest struct { // Possible variants: // 1. CCF // 2. JSON-CDC - // 3. DEFAULT, which is JSON-CDC EventEncodingVersion entities.EventEncodingVersion `protobuf:"varint,2,opt,name=event_encoding_version,json=eventEncodingVersion,proto3,enum=flow.entities.EventEncodingVersion" json:"event_encoding_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -133,7 +132,6 @@ type SubscribeExecutionDataRequest struct { // Possible variants: // 1. CCF // 2. JSON-CDC - // 3. DEFAULT, which is JSON-CDC EventEncodingVersion entities.EventEncodingVersion `protobuf:"varint,3,opt,name=event_encoding_version,json=eventEncodingVersion,proto3,enum=flow.entities.EventEncodingVersion" json:"event_encoding_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -274,7 +272,6 @@ type SubscribeEventsRequest struct { // Possible variants: // 1. CCF // 2. JSON-CDC - // 3. DEFAULT, which is JSON-CDC EventEncodingVersion entities.EventEncodingVersion `protobuf:"varint,5,opt,name=event_encoding_version,json=eventEncodingVersion,proto3,enum=flow.entities.EventEncodingVersion" json:"event_encoding_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` 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) From ed39603acd38c6a475b80460c052711849128ff5 Mon Sep 17 00:00:00 2001 From: Andrii Date: Wed, 15 Nov 2023 12:35:08 +0200 Subject: [PATCH 2/2] Added changes due to comments left in PR --- protobuf/flow/execution/execution.proto | 37 +- protobuf/go/flow/execution/execution.pb.go | 355 ++++++++++++++---- .../go/flow/execution/execution_grpc.pb.go | 100 ++++- 3 files changed, 401 insertions(+), 91 deletions(-) diff --git a/protobuf/flow/execution/execution.proto b/protobuf/flow/execution/execution.proto index c0fe63bea..9fbc68c7a 100644 --- a/protobuf/flow/execution/execution.proto +++ b/protobuf/flow/execution/execution.proto @@ -41,18 +41,26 @@ service ExecutionAPI { rpc GetTransactionResult(GetTransactionResultRequest) returns (GetTransactionResultResponse); - // GetTransactionResultByIndex gets the result of a transaction at the index . + // GetTransactionResultByIndex gets the result of a transaction at the index. rpc GetTransactionResultByIndex(GetTransactionByIndexRequest) returns (GetTransactionResultResponse); // GetTransactionResultByIndex gets the results of all transactions in the - // block ordered by transaction index + // block ordered by transaction index. rpc GetTransactionResultsByBlockID(GetTransactionsByBlockIDRequest) returns (GetTransactionResultsResponse); + // GetTransactionErrorMessage gets the error messages of a failed transaction by id. + rpc GetTransactionErrorMessage(GetTransactionErrorMessageRequest) + returns (GetTransactionErrorMessagesResponse); + + // GetTransactionErrorMessageByIndex gets the error messages of a failed transaction at the index. + rpc GetTransactionErrorMessageByIndex(GetTransactionErrorMessageByIndexRequest) + returns (GetTransactionErrorMessagesResponse); + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the - // block ordered by transaction index - rpc GetTransactionErrorMessagesByBlockID(GetTransactionsByBlockIDRequest) + // block ordered by transaction index. + rpc GetTransactionErrorMessagesByBlockID(GetTransactionErrorMessagesByBlockIDRequest) returns (GetTransactionErrorMessagesResponse); // Registers @@ -146,8 +154,27 @@ message GetTransactionResultsResponse { entities.EventEncodingVersion event_encoding_version = 2; } +message GetTransactionErrorMessageRequest { + bytes block_id = 1; + bytes transaction_id = 2; +} + +message GetTransactionErrorMessageByIndexRequest { + bytes block_id = 1; + uint32 index = 2; +} + +message GetTransactionErrorMessagesByBlockIDRequest { + bytes block_id = 1; +} + message GetTransactionErrorMessagesResponse { - repeated string error_messages = 1; + message Result { + bytes transaction_id = 1; + uint32 index = 2; + string error_message = 3; + } + repeated Result results = 1; } // Registers diff --git a/protobuf/go/flow/execution/execution.pb.go b/protobuf/go/flow/execution/execution.pb.go index 5dbc651d0..d562ead2d 100644 --- a/protobuf/go/flow/execution/execution.pb.go +++ b/protobuf/go/flow/execution/execution.pb.go @@ -655,18 +655,157 @@ func (m *GetTransactionResultsResponse) GetEventEncodingVersion() entities.Event return entities.EventEncodingVersion_JSON_CDC_V0 } -type GetTransactionErrorMessagesResponse struct { - ErrorMessages []string `protobuf:"bytes,1,rep,name=error_messages,json=errorMessages,proto3" json:"error_messages,omitempty"` +type GetTransactionErrorMessageRequest struct { + BlockId []byte `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` + TransactionId []byte `protobuf:"bytes,2,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionErrorMessageRequest) Reset() { *m = GetTransactionErrorMessageRequest{} } +func (m *GetTransactionErrorMessageRequest) String() string { return proto.CompactTextString(m) } +func (*GetTransactionErrorMessageRequest) ProtoMessage() {} +func (*GetTransactionErrorMessageRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{13} +} + +func (m *GetTransactionErrorMessageRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionErrorMessageRequest.Unmarshal(m, b) +} +func (m *GetTransactionErrorMessageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionErrorMessageRequest.Marshal(b, m, deterministic) +} +func (m *GetTransactionErrorMessageRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionErrorMessageRequest.Merge(m, src) +} +func (m *GetTransactionErrorMessageRequest) XXX_Size() int { + return xxx_messageInfo_GetTransactionErrorMessageRequest.Size(m) +} +func (m *GetTransactionErrorMessageRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionErrorMessageRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionErrorMessageRequest proto.InternalMessageInfo + +func (m *GetTransactionErrorMessageRequest) GetBlockId() []byte { + if m != nil { + return m.BlockId + } + return nil +} + +func (m *GetTransactionErrorMessageRequest) GetTransactionId() []byte { + if m != nil { + return m.TransactionId + } + return nil +} + +type GetTransactionErrorMessageByIndexRequest struct { + BlockId []byte `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` + Index uint32 `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } +func (m *GetTransactionErrorMessageByIndexRequest) Reset() { + *m = GetTransactionErrorMessageByIndexRequest{} +} +func (m *GetTransactionErrorMessageByIndexRequest) String() string { return proto.CompactTextString(m) } +func (*GetTransactionErrorMessageByIndexRequest) ProtoMessage() {} +func (*GetTransactionErrorMessageByIndexRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{14} +} + +func (m *GetTransactionErrorMessageByIndexRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionErrorMessageByIndexRequest.Unmarshal(m, b) +} +func (m *GetTransactionErrorMessageByIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionErrorMessageByIndexRequest.Marshal(b, m, deterministic) +} +func (m *GetTransactionErrorMessageByIndexRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionErrorMessageByIndexRequest.Merge(m, src) +} +func (m *GetTransactionErrorMessageByIndexRequest) XXX_Size() int { + return xxx_messageInfo_GetTransactionErrorMessageByIndexRequest.Size(m) +} +func (m *GetTransactionErrorMessageByIndexRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionErrorMessageByIndexRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionErrorMessageByIndexRequest proto.InternalMessageInfo + +func (m *GetTransactionErrorMessageByIndexRequest) GetBlockId() []byte { + if m != nil { + return m.BlockId + } + return nil +} + +func (m *GetTransactionErrorMessageByIndexRequest) GetIndex() uint32 { + if m != nil { + return m.Index + } + return 0 +} + +type GetTransactionErrorMessagesByBlockIDRequest struct { + BlockId []byte `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionErrorMessagesByBlockIDRequest) Reset() { + *m = GetTransactionErrorMessagesByBlockIDRequest{} +} +func (m *GetTransactionErrorMessagesByBlockIDRequest) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionErrorMessagesByBlockIDRequest) ProtoMessage() {} +func (*GetTransactionErrorMessagesByBlockIDRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{15} +} + +func (m *GetTransactionErrorMessagesByBlockIDRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionErrorMessagesByBlockIDRequest.Unmarshal(m, b) +} +func (m *GetTransactionErrorMessagesByBlockIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionErrorMessagesByBlockIDRequest.Marshal(b, m, deterministic) +} +func (m *GetTransactionErrorMessagesByBlockIDRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionErrorMessagesByBlockIDRequest.Merge(m, src) +} +func (m *GetTransactionErrorMessagesByBlockIDRequest) XXX_Size() int { + return xxx_messageInfo_GetTransactionErrorMessagesByBlockIDRequest.Size(m) +} +func (m *GetTransactionErrorMessagesByBlockIDRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionErrorMessagesByBlockIDRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionErrorMessagesByBlockIDRequest proto.InternalMessageInfo + +func (m *GetTransactionErrorMessagesByBlockIDRequest) GetBlockId() []byte { + if m != nil { + return m.BlockId + } + return nil +} + +type GetTransactionErrorMessagesResponse struct { + Results []*GetTransactionErrorMessagesResponse_Result `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + func (m *GetTransactionErrorMessagesResponse) Reset() { *m = GetTransactionErrorMessagesResponse{} } func (m *GetTransactionErrorMessagesResponse) String() string { return proto.CompactTextString(m) } func (*GetTransactionErrorMessagesResponse) ProtoMessage() {} func (*GetTransactionErrorMessagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{13} + return fileDescriptor_699624211ed46c53, []int{16} } func (m *GetTransactionErrorMessagesResponse) XXX_Unmarshal(b []byte) error { @@ -687,13 +826,72 @@ func (m *GetTransactionErrorMessagesResponse) XXX_DiscardUnknown() { var xxx_messageInfo_GetTransactionErrorMessagesResponse proto.InternalMessageInfo -func (m *GetTransactionErrorMessagesResponse) GetErrorMessages() []string { +func (m *GetTransactionErrorMessagesResponse) GetResults() []*GetTransactionErrorMessagesResponse_Result { if m != nil { - return m.ErrorMessages + return m.Results } return nil } +type GetTransactionErrorMessagesResponse_Result struct { + TransactionId []byte `protobuf:"bytes,1,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"` + Index uint32 `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"` + ErrorMessage string `protobuf:"bytes,3,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionErrorMessagesResponse_Result) Reset() { + *m = GetTransactionErrorMessagesResponse_Result{} +} +func (m *GetTransactionErrorMessagesResponse_Result) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionErrorMessagesResponse_Result) ProtoMessage() {} +func (*GetTransactionErrorMessagesResponse_Result) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{16, 0} +} + +func (m *GetTransactionErrorMessagesResponse_Result) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionErrorMessagesResponse_Result.Unmarshal(m, b) +} +func (m *GetTransactionErrorMessagesResponse_Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionErrorMessagesResponse_Result.Marshal(b, m, deterministic) +} +func (m *GetTransactionErrorMessagesResponse_Result) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionErrorMessagesResponse_Result.Merge(m, src) +} +func (m *GetTransactionErrorMessagesResponse_Result) XXX_Size() int { + return xxx_messageInfo_GetTransactionErrorMessagesResponse_Result.Size(m) +} +func (m *GetTransactionErrorMessagesResponse_Result) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionErrorMessagesResponse_Result.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionErrorMessagesResponse_Result proto.InternalMessageInfo + +func (m *GetTransactionErrorMessagesResponse_Result) GetTransactionId() []byte { + if m != nil { + return m.TransactionId + } + return nil +} + +func (m *GetTransactionErrorMessagesResponse_Result) GetIndex() uint32 { + if m != nil { + return m.Index + } + return 0 +} + +func (m *GetTransactionErrorMessagesResponse_Result) GetErrorMessage() string { + if m != nil { + return m.ErrorMessage + } + return "" +} + type GetRegisterAtBlockIDRequest struct { BlockId []byte `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` RegisterOwner []byte `protobuf:"bytes,2,opt,name=register_owner,json=registerOwner,proto3" json:"register_owner,omitempty"` @@ -708,7 +906,7 @@ func (m *GetRegisterAtBlockIDRequest) Reset() { *m = GetRegisterAtBlockI func (m *GetRegisterAtBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*GetRegisterAtBlockIDRequest) ProtoMessage() {} func (*GetRegisterAtBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{14} + return fileDescriptor_699624211ed46c53, []int{17} } func (m *GetRegisterAtBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -761,7 +959,7 @@ func (m *GetRegisterAtBlockIDResponse) Reset() { *m = GetRegisterAtBlock func (m *GetRegisterAtBlockIDResponse) String() string { return proto.CompactTextString(m) } func (*GetRegisterAtBlockIDResponse) ProtoMessage() {} func (*GetRegisterAtBlockIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{15} + return fileDescriptor_699624211ed46c53, []int{18} } func (m *GetRegisterAtBlockIDResponse) XXX_Unmarshal(b []byte) error { @@ -800,7 +998,7 @@ func (m *GetLatestBlockHeaderRequest) Reset() { *m = GetLatestBlockHeade func (m *GetLatestBlockHeaderRequest) String() string { return proto.CompactTextString(m) } func (*GetLatestBlockHeaderRequest) ProtoMessage() {} func (*GetLatestBlockHeaderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{16} + return fileDescriptor_699624211ed46c53, []int{19} } func (m *GetLatestBlockHeaderRequest) XXX_Unmarshal(b []byte) error { @@ -839,7 +1037,7 @@ func (m *GetBlockHeaderByIDRequest) Reset() { *m = GetBlockHeaderByIDReq func (m *GetBlockHeaderByIDRequest) String() string { return proto.CompactTextString(m) } func (*GetBlockHeaderByIDRequest) ProtoMessage() {} func (*GetBlockHeaderByIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{17} + return fileDescriptor_699624211ed46c53, []int{20} } func (m *GetBlockHeaderByIDRequest) XXX_Unmarshal(b []byte) error { @@ -878,7 +1076,7 @@ func (m *BlockHeaderResponse) Reset() { *m = BlockHeaderResponse{} } func (m *BlockHeaderResponse) String() string { return proto.CompactTextString(m) } func (*BlockHeaderResponse) ProtoMessage() {} func (*BlockHeaderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_699624211ed46c53, []int{18} + return fileDescriptor_699624211ed46c53, []int{21} } func (m *BlockHeaderResponse) XXX_Unmarshal(b []byte) error { @@ -921,7 +1119,11 @@ func init() { proto.RegisterType((*GetTransactionResultResponse)(nil), "flow.execution.GetTransactionResultResponse") proto.RegisterType((*GetTransactionsByBlockIDRequest)(nil), "flow.execution.GetTransactionsByBlockIDRequest") proto.RegisterType((*GetTransactionResultsResponse)(nil), "flow.execution.GetTransactionResultsResponse") + proto.RegisterType((*GetTransactionErrorMessageRequest)(nil), "flow.execution.GetTransactionErrorMessageRequest") + proto.RegisterType((*GetTransactionErrorMessageByIndexRequest)(nil), "flow.execution.GetTransactionErrorMessageByIndexRequest") + proto.RegisterType((*GetTransactionErrorMessagesByBlockIDRequest)(nil), "flow.execution.GetTransactionErrorMessagesByBlockIDRequest") proto.RegisterType((*GetTransactionErrorMessagesResponse)(nil), "flow.execution.GetTransactionErrorMessagesResponse") + proto.RegisterType((*GetTransactionErrorMessagesResponse_Result)(nil), "flow.execution.GetTransactionErrorMessagesResponse.Result") proto.RegisterType((*GetRegisterAtBlockIDRequest)(nil), "flow.execution.GetRegisterAtBlockIDRequest") proto.RegisterType((*GetRegisterAtBlockIDResponse)(nil), "flow.execution.GetRegisterAtBlockIDResponse") proto.RegisterType((*GetLatestBlockHeaderRequest)(nil), "flow.execution.GetLatestBlockHeaderRequest") @@ -932,68 +1134,73 @@ func init() { func init() { proto.RegisterFile("flow/execution/execution.proto", fileDescriptor_699624211ed46c53) } var fileDescriptor_699624211ed46c53 = []byte{ - // 994 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xdd, 0x6e, 0xe3, 0x44, - 0x14, 0x56, 0xda, 0xf4, 0x27, 0x27, 0x3f, 0x42, 0xd3, 0xa8, 0x4a, 0x9d, 0xfe, 0x31, 0xa5, 0x52, - 0xa1, 0x5d, 0x07, 0x52, 0xc4, 0x05, 0xe2, 0xa6, 0x81, 0xd0, 0x0d, 0xec, 0xd2, 0x65, 0x16, 0x21, - 0x81, 0x84, 0x22, 0x37, 0x9e, 0x75, 0xad, 0x4d, 0x3d, 0x59, 0xcf, 0xb8, 0xdd, 0xdc, 0x71, 0xc9, - 0x05, 0xcf, 0xc4, 0x7b, 0xf0, 0x10, 0x48, 0x3c, 0x02, 0xf2, 0xcc, 0x38, 0xb6, 0x93, 0x49, 0x36, - 0xd1, 0x8a, 0x9b, 0x28, 0x73, 0xe6, 0x3b, 0xe7, 0x3b, 0x73, 0x7e, 0x65, 0x38, 0x7c, 0x35, 0x64, - 0x8f, 0x2d, 0xfa, 0x96, 0x0e, 0x22, 0xe1, 0xb3, 0x20, 0xfd, 0x67, 0x8f, 0x42, 0x26, 0x18, 0xaa, - 0xc5, 0xf7, 0xf6, 0x44, 0x6a, 0x35, 0x15, 0x3e, 0x10, 0xbe, 0xf0, 0x29, 0x6f, 0x39, 0x83, 0x01, - 0x8b, 0x02, 0xa1, 0xc0, 0xd6, 0x71, 0xfe, 0xf2, 0x76, 0xc8, 0x06, 0xaf, 0xfb, 0x77, 0xd4, 0x71, - 0x69, 0xa8, 0x11, 0x7b, 0x79, 0x04, 0x7d, 0xa0, 0x13, 0xe5, 0xa3, 0xfc, 0x95, 0x08, 0x9d, 0x80, - 0x3b, 0x83, 0xd4, 0x15, 0x5c, 0x85, 0xf2, 0x0b, 0x3f, 0xf0, 0x08, 0x7d, 0x13, 0x51, 0x2e, 0x70, - 0x0d, 0x2a, 0xea, 0xc8, 0x47, 0x2c, 0xe0, 0x14, 0xff, 0x08, 0xd6, 0x35, 0x15, 0x57, 0xca, 0xa1, - 0x2b, 0xd1, 0x89, 0xc9, 0x7b, 0xdf, 0x68, 0x34, 0xda, 0x83, 0x6d, 0xe5, 0x8e, 0xef, 0x36, 0x0a, - 0xc7, 0x85, 0xb3, 0x0a, 0xd9, 0x92, 0xe7, 0x9e, 0x8b, 0x1a, 0xb0, 0xe5, 0xb8, 0x6e, 0x48, 0x39, - 0x6f, 0xac, 0xa9, 0x1b, 0x7d, 0xc4, 0x37, 0xd0, 0x34, 0x9a, 0x54, 0x8c, 0xe8, 0x53, 0xd8, 0xd2, - 0xef, 0x97, 0x26, 0xcb, 0xed, 0x5d, 0x5b, 0x45, 0x4b, 0xbf, 0xc1, 0xd6, 0x9a, 0x24, 0x81, 0xe1, - 0x11, 0x1c, 0x74, 0x65, 0x28, 0xe9, 0xcb, 0x41, 0xe8, 0x8f, 0x56, 0x72, 0x73, 0x17, 0x36, 0xb9, - 0x54, 0xd2, 0x5e, 0xea, 0x13, 0xda, 0x87, 0x92, 0x13, 0x7a, 0xd1, 0x3d, 0x0d, 0x04, 0x6f, 0xac, - 0x1f, 0xaf, 0x9f, 0x55, 0x48, 0x2a, 0xc0, 0x5f, 0xc0, 0xe1, 0x3c, 0x46, 0xfd, 0x8a, 0x3a, 0x6c, - 0x3c, 0x38, 0xc3, 0x88, 0x6a, 0x3e, 0x75, 0xc0, 0x7f, 0xad, 0xc1, 0xfe, 0x35, 0x15, 0xdd, 0x38, - 0x41, 0xfc, 0x5b, 0x16, 0x6a, 0x2d, 0x3e, 0x51, 0x7b, 0x0e, 0x5b, 0x21, 0xe5, 0xd1, 0x50, 0xf0, - 0x46, 0xe1, 0x78, 0xfd, 0xac, 0xdc, 0xbe, 0xb4, 0xf3, 0xa5, 0x62, 0x2f, 0x52, 0xb7, 0x89, 0xd4, - 0x25, 0x89, 0x0d, 0xf4, 0x0b, 0xec, 0xca, 0x62, 0xe8, 0xd3, 0x60, 0xc0, 0x5c, 0x3f, 0xf0, 0xfa, - 0x0f, 0x34, 0xe4, 0x3e, 0x0b, 0xe4, 0x6b, 0x6b, 0xed, 0x93, 0xa9, 0xd0, 0x4a, 0xcb, 0x5d, 0x8d, - 0xfd, 0x59, 0x41, 0x49, 0x9d, 0x1a, 0xa4, 0x96, 0x80, 0x4d, 0xc5, 0xb6, 0x28, 0xba, 0x1f, 0x42, - 0x25, 0x29, 0x57, 0xdf, 0xbb, 0x53, 0x31, 0x2e, 0x92, 0xb2, 0x94, 0x3d, 0x95, 0x22, 0x74, 0x01, - 0x9b, 0xd2, 0xbe, 0x8a, 0x72, 0xb9, 0x5d, 0x37, 0xb9, 0x44, 0x34, 0x06, 0xff, 0x20, 0x6b, 0xc7, - 0x10, 0x00, 0x95, 0x68, 0x04, 0x45, 0x31, 0x1e, 0xa9, 0xa0, 0x97, 0x88, 0xfc, 0x8f, 0x9a, 0x50, - 0x4a, 0xdc, 0x8b, 0x4b, 0x31, 0xce, 0xe4, 0xb6, 0xf6, 0x8f, 0xe3, 0xbe, 0xb4, 0xf7, 0x53, 0xda, - 0x15, 0x3a, 0x82, 0xef, 0x2e, 0x9c, 0x53, 0xa8, 0x65, 0x9a, 0x29, 0x06, 0xa8, 0x02, 0xaa, 0x66, - 0xa4, 0x3d, 0x17, 0xdf, 0xc8, 0x84, 0x67, 0x08, 0x3a, 0xe3, 0x5e, 0xe0, 0xd2, 0xb7, 0x4b, 0x30, - 0xd4, 0x61, 0xc3, 0x8f, 0xa1, 0xd2, 0x70, 0x95, 0xa8, 0x03, 0xfe, 0xa7, 0x30, 0x6d, 0x31, 0x71, - 0x59, 0x97, 0xd0, 0x11, 0x94, 0xb9, 0x70, 0x44, 0xc4, 0xfb, 0x03, 0xe6, 0xaa, 0x50, 0x54, 0x09, - 0x28, 0xd1, 0xd7, 0xcc, 0xa5, 0xe8, 0x04, 0xaa, 0x34, 0x0c, 0x59, 0xd8, 0xbf, 0xa7, 0x9c, 0x3b, - 0x1e, 0x95, 0xf6, 0x4b, 0xa4, 0x22, 0x85, 0xcf, 0x95, 0x6c, 0xb5, 0xb4, 0x2c, 0xa8, 0xb3, 0xe2, - 0x7b, 0xd6, 0x19, 0xfe, 0x0a, 0x8e, 0xf2, 0xcf, 0xe5, 0x9d, 0xf1, 0xd2, 0xed, 0x8d, 0xff, 0x2e, - 0xc0, 0x81, 0x29, 0x5a, 0x69, 0xc7, 0xfd, 0x06, 0x3b, 0xd9, 0x3c, 0xe6, 0xbb, 0xef, 0xc2, 0xd0, - 0x7d, 0x73, 0x23, 0x4f, 0x90, 0x98, 0xa1, 0xf9, 0x1f, 0x3b, 0x10, 0x3f, 0x83, 0x93, 0xbc, 0x3b, - 0xdd, 0x4c, 0x02, 0xd3, 0x07, 0x9e, 0x42, 0x2d, 0x97, 0x6e, 0xf5, 0xb6, 0x12, 0xa9, 0x66, 0xf3, - 0xcd, 0xf1, 0x1f, 0x05, 0xd9, 0x0a, 0x84, 0x7a, 0x3e, 0x17, 0x34, 0x5c, 0x65, 0x86, 0x9e, 0x42, - 0x2d, 0xd4, 0x6a, 0x7d, 0xf6, 0x18, 0xd0, 0x30, 0x69, 0x85, 0x44, 0x7a, 0x13, 0x0b, 0xe3, 0x61, - 0x30, 0x81, 0xbd, 0xa6, 0x63, 0x59, 0x1a, 0x15, 0x52, 0x4e, 0x64, 0xdf, 0xd3, 0xf1, 0x77, 0xc5, - 0xed, 0xf5, 0x0f, 0x8a, 0xf8, 0x73, 0x59, 0xe1, 0x06, 0x4f, 0x16, 0xce, 0xd6, 0x2f, 0xa5, 0xff, - 0xcf, 0x1c, 0x41, 0xb9, 0xd2, 0x78, 0x2a, 0x57, 0x64, 0xe2, 0x7f, 0x13, 0x4a, 0x3e, 0xef, 0x73, - 0xea, 0x0c, 0xa9, 0x7a, 0xc0, 0x36, 0xd9, 0xf6, 0xf9, 0x4b, 0x79, 0xc6, 0xe7, 0xb0, 0x77, 0x4d, - 0xb3, 0x5a, 0x9d, 0x71, 0xfa, 0xf2, 0x1a, 0xac, 0x4d, 0xde, 0xbc, 0xe6, 0xbb, 0xf8, 0x1a, 0x76, - 0x72, 0xf6, 0x27, 0x7b, 0x6b, 0x43, 0x06, 0x44, 0x6f, 0x2d, 0x6b, 0x2a, 0xb1, 0x59, 0x15, 0x05, - 0x6c, 0xff, 0x5b, 0x82, 0x4a, 0x37, 0x29, 0xad, 0xab, 0x17, 0x3d, 0x74, 0x05, 0xc5, 0x78, 0xf9, - 0xa2, 0xe6, 0x74, 0xd9, 0x65, 0x36, 0xb4, 0xb5, 0x6f, 0xbe, 0xd4, 0x5e, 0x04, 0xb0, 0x63, 0x58, - 0xae, 0xe8, 0x13, 0x43, 0x21, 0xcf, 0x59, 0xea, 0xd6, 0xf9, 0x52, 0x58, 0xcd, 0xf7, 0x08, 0xbb, - 0xe6, 0x4d, 0x88, 0x9e, 0x4c, 0x9b, 0x59, 0xb8, 0xa3, 0x2d, 0x7b, 0x59, 0xb8, 0x26, 0x7e, 0x03, - 0x75, 0xd3, 0x26, 0x40, 0xe7, 0xcb, 0x2d, 0x4c, 0x45, 0x7a, 0xb1, 0xca, 0x76, 0xd5, 0x94, 0x33, - 0xfd, 0x6f, 0xa4, 0x9c, 0xb7, 0x52, 0xac, 0x95, 0x46, 0x0a, 0x1a, 0x9b, 0xf7, 0x93, 0x5e, 0x22, - 0xe8, 0x1d, 0xc6, 0xf2, 0xbb, 0x66, 0x45, 0xea, 0xdf, 0x0b, 0x70, 0x68, 0x1c, 0x9d, 0x93, 0xf9, - 0x8b, 0x5a, 0x8b, 0x0d, 0xce, 0x4c, 0x6a, 0xeb, 0xc9, 0x32, 0x1e, 0xa4, 0x01, 0xff, 0xb3, 0x00, - 0x1f, 0x2d, 0x18, 0x71, 0xef, 0xe1, 0xc8, 0xe5, 0x62, 0x05, 0xf3, 0x24, 0x55, 0xf9, 0x9f, 0x99, - 0x4b, 0xc6, 0xfc, 0xcf, 0x9b, 0xa3, 0xc6, 0x24, 0xcc, 0x1f, 0x75, 0x77, 0x92, 0x72, 0x66, 0xa8, - 0x19, 0x29, 0xe7, 0x8d, 0x3e, 0xeb, 0x64, 0x1a, 0x6c, 0x1a, 0x5f, 0x2e, 0xa0, 0xd9, 0x11, 0x88, - 0x3e, 0x36, 0xf0, 0x98, 0xc7, 0xe4, 0x52, 0x2c, 0x1d, 0x02, 0x07, 0x2c, 0xf4, 0x6c, 0x16, 0x48, - 0xac, 0xfc, 0x02, 0xb9, 0x8d, 0x5e, 0xa5, 0x4a, 0xbf, 0x7e, 0xe6, 0xf9, 0xe2, 0x2e, 0xba, 0xb5, - 0x07, 0xec, 0xbe, 0xa5, 0x50, 0x2d, 0xf9, 0x93, 0x40, 0x5b, 0x1e, 0x6b, 0xe5, 0x3f, 0xae, 0x6e, - 0x37, 0xe5, 0xdd, 0xe5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0x9d, 0xfc, 0x68, 0x75, 0x0d, - 0x00, 0x00, + // 1080 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4f, 0x6f, 0xe3, 0x44, + 0x14, 0x97, 0x9b, 0xb4, 0x4d, 0x5e, 0xfe, 0x08, 0x4d, 0xa3, 0x2a, 0x75, 0xfa, 0x6f, 0x5d, 0x56, + 0x2a, 0xb4, 0xeb, 0xb0, 0x29, 0x42, 0x68, 0xe1, 0xd2, 0x40, 0x68, 0x03, 0x2c, 0x5d, 0xbc, 0x2b, + 0x24, 0x40, 0x28, 0x72, 0xe3, 0xd9, 0xd4, 0x6c, 0xea, 0xc9, 0x7a, 0x26, 0xed, 0xe6, 0xc6, 0x81, + 0x03, 0x67, 0x4e, 0xfb, 0x69, 0xf8, 0x1e, 0x7c, 0x02, 0x4e, 0x7c, 0x07, 0xe4, 0x99, 0x71, 0x12, + 0xc7, 0x63, 0xaf, 0xd3, 0x65, 0x2f, 0x55, 0xe6, 0xcd, 0x7b, 0xef, 0xf7, 0xe6, 0xfd, 0x77, 0x61, + 0xf7, 0xf9, 0x90, 0xdc, 0x36, 0xf1, 0x2b, 0xdc, 0x1f, 0x33, 0x97, 0x78, 0xb3, 0x5f, 0xe6, 0xc8, + 0x27, 0x8c, 0xa0, 0x6a, 0x70, 0x6f, 0x4e, 0xa9, 0x7a, 0x43, 0xf0, 0x7b, 0xcc, 0x65, 0x2e, 0xa6, + 0x4d, 0xbb, 0xdf, 0x27, 0x63, 0x8f, 0x09, 0x66, 0x7d, 0x3f, 0x7a, 0x79, 0x39, 0x24, 0xfd, 0x17, + 0xbd, 0x2b, 0x6c, 0x3b, 0xd8, 0x97, 0x1c, 0x5b, 0x51, 0x0e, 0x7c, 0x83, 0xa7, 0xc2, 0x7b, 0xd1, + 0x2b, 0xe6, 0xdb, 0x1e, 0xb5, 0xfb, 0x33, 0x53, 0x8c, 0x0a, 0x94, 0x9e, 0xb8, 0xde, 0xc0, 0xc2, + 0x2f, 0xc7, 0x98, 0x32, 0xa3, 0x0a, 0x65, 0x71, 0xa4, 0x23, 0xe2, 0x51, 0x6c, 0x7c, 0x0f, 0xfa, + 0x19, 0x66, 0xa7, 0xc2, 0xa0, 0x53, 0xd6, 0x0e, 0xc0, 0xbb, 0x5f, 0x4a, 0x6e, 0xb4, 0x05, 0x05, + 0x61, 0x8e, 0xeb, 0xd4, 0xb5, 0x7d, 0xed, 0xb0, 0x6c, 0xad, 0xf3, 0x73, 0xd7, 0x41, 0x75, 0x58, + 0xb7, 0x1d, 0xc7, 0xc7, 0x94, 0xd6, 0x57, 0xc4, 0x8d, 0x3c, 0x1a, 0x17, 0xd0, 0x50, 0xaa, 0x14, + 0x88, 0xe8, 0x23, 0x58, 0x97, 0xef, 0xe7, 0x2a, 0x4b, 0xad, 0x4d, 0x53, 0x78, 0x4b, 0xbe, 0xc1, + 0x94, 0x92, 0x56, 0xc8, 0x66, 0x8c, 0x60, 0xa7, 0xc3, 0x5d, 0x89, 0x9f, 0xf6, 0x7d, 0x77, 0xb4, + 0x94, 0x99, 0x9b, 0xb0, 0x46, 0xb9, 0x90, 0xb4, 0x52, 0x9e, 0xd0, 0x36, 0x14, 0x6d, 0x7f, 0x30, + 0xbe, 0xc6, 0x1e, 0xa3, 0xf5, 0xdc, 0x7e, 0xee, 0xb0, 0x6c, 0xcd, 0x08, 0xc6, 0x27, 0xb0, 0x9b, + 0x84, 0x28, 0x5f, 0x51, 0x83, 0xd5, 0x1b, 0x7b, 0x38, 0xc6, 0x12, 0x4f, 0x1c, 0x8c, 0xbf, 0x56, + 0x60, 0xfb, 0x0c, 0xb3, 0x4e, 0x10, 0x20, 0xfa, 0x15, 0xf1, 0xa5, 0x14, 0x9d, 0x8a, 0x3d, 0x86, + 0x75, 0x1f, 0xd3, 0xf1, 0x90, 0xd1, 0xba, 0xb6, 0x9f, 0x3b, 0x2c, 0xb5, 0x4e, 0xcc, 0x68, 0xaa, + 0x98, 0x69, 0xe2, 0xa6, 0xc5, 0x65, 0xad, 0x50, 0x07, 0xfa, 0x11, 0x36, 0x79, 0x32, 0xf4, 0xb0, + 0xd7, 0x27, 0x8e, 0xeb, 0x0d, 0x7a, 0x37, 0xd8, 0xa7, 0x2e, 0xf1, 0xf8, 0x6b, 0xab, 0xad, 0x83, + 0x05, 0xd7, 0x72, 0xcd, 0x1d, 0xc9, 0xfb, 0x83, 0x60, 0xb5, 0x6a, 0x58, 0x41, 0xd5, 0x19, 0xac, + 0x09, 0xb4, 0x34, 0xef, 0xde, 0x83, 0x72, 0x98, 0xae, 0xee, 0xe0, 0x4a, 0xf8, 0x38, 0x6f, 0x95, + 0x38, 0xed, 0x9c, 0x93, 0xd0, 0x31, 0xac, 0x71, 0xfd, 0xc2, 0xcb, 0xa5, 0x56, 0x4d, 0x65, 0x92, + 0x25, 0x79, 0x8c, 0xef, 0x78, 0xee, 0x28, 0x1c, 0x20, 0x02, 0x8d, 0x20, 0xcf, 0x26, 0x23, 0xe1, + 0xf4, 0xa2, 0xc5, 0x7f, 0xa3, 0x06, 0x14, 0x43, 0xf3, 0x82, 0x54, 0x0c, 0x22, 0x59, 0x90, 0xf6, + 0x51, 0xa3, 0xc7, 0xf5, 0x3d, 0x9b, 0x55, 0x85, 0xf4, 0xe0, 0x9b, 0x13, 0xe7, 0x3e, 0x54, 0xe7, + 0x8a, 0x29, 0x60, 0x10, 0x09, 0x54, 0x99, 0xa3, 0x76, 0x1d, 0xe3, 0x82, 0x07, 0x7c, 0x0e, 0xa0, + 0x3d, 0xe9, 0x7a, 0x0e, 0x7e, 0x95, 0x01, 0xa1, 0x06, 0xab, 0x6e, 0xc0, 0xca, 0x15, 0x57, 0x2c, + 0x71, 0x30, 0xfe, 0xd5, 0x16, 0x35, 0x86, 0x26, 0xcb, 0x14, 0xda, 0x83, 0x12, 0x65, 0x36, 0x1b, + 0xd3, 0x5e, 0x9f, 0x38, 0xc2, 0x15, 0x15, 0x0b, 0x04, 0xe9, 0x0b, 0xe2, 0x60, 0x74, 0x00, 0x15, + 0xec, 0xfb, 0xc4, 0xef, 0x5d, 0x63, 0x4a, 0xed, 0x01, 0xe6, 0xfa, 0x8b, 0x56, 0x99, 0x13, 0x1f, + 0x0b, 0xda, 0x72, 0x61, 0x49, 0xc9, 0xb3, 0xfc, 0x5b, 0xe6, 0x99, 0xf1, 0x39, 0xec, 0x45, 0x9f, + 0x4b, 0xdb, 0x93, 0xcc, 0xe5, 0x6d, 0xfc, 0xad, 0xc1, 0x8e, 0xca, 0x5b, 0xb3, 0x8a, 0xfb, 0x05, + 0x36, 0xe6, 0xe3, 0x18, 0xad, 0xbe, 0x63, 0x45, 0xf5, 0x25, 0x7a, 0xde, 0x42, 0x2c, 0x06, 0xf3, + 0x0e, 0x2b, 0xd0, 0xc0, 0x70, 0x2f, 0x6a, 0x4e, 0x67, 0x2e, 0x80, 0xff, 0x5f, 0x06, 0xff, 0x0c, + 0x87, 0xc9, 0x30, 0x6f, 0x9b, 0xcd, 0xe7, 0x70, 0x94, 0xac, 0x7c, 0xa9, 0x48, 0xff, 0xa3, 0xc1, + 0x41, 0x8a, 0xaa, 0x69, 0xbc, 0x9f, 0x2d, 0x76, 0xd8, 0x47, 0xe9, 0x31, 0x56, 0x6a, 0x59, 0x6c, + 0xb4, 0xfa, 0xaf, 0xd3, 0x6e, 0x18, 0xf7, 0xaa, 0xa6, 0xf0, 0xaa, 0xda, 0x1d, 0xf1, 0xd2, 0xcc, + 0xc5, 0x4b, 0xd3, 0xf8, 0x43, 0xe3, 0x4d, 0xcb, 0xc2, 0x03, 0x97, 0x32, 0xec, 0x2f, 0x33, 0xed, + 0xee, 0x43, 0xd5, 0x97, 0x62, 0x3d, 0x72, 0xeb, 0x61, 0x3f, 0x0c, 0x79, 0x48, 0xbd, 0x08, 0x88, + 0x41, 0xdb, 0x9e, 0xb2, 0xbd, 0xc0, 0x13, 0x5e, 0xc4, 0x65, 0xab, 0x14, 0xd2, 0xbe, 0xc1, 0x93, + 0xaf, 0xf3, 0x85, 0xdc, 0x7b, 0x79, 0xe3, 0x63, 0xde, 0x8b, 0x14, 0x96, 0xa4, 0x4e, 0xc1, 0x47, + 0xdc, 0xfe, 0x6f, 0x6d, 0x86, 0xa9, 0x90, 0x38, 0xe7, 0xcb, 0x4c, 0x68, 0x7f, 0x03, 0x8a, 0x2e, + 0xed, 0x51, 0x6c, 0x0f, 0xb1, 0x78, 0x40, 0xc1, 0x2a, 0xb8, 0xf4, 0x29, 0x3f, 0x1b, 0x47, 0xb0, + 0x75, 0x86, 0xe7, 0xa5, 0xda, 0x93, 0xd9, 0xcb, 0xab, 0xb0, 0x32, 0x7d, 0xf3, 0x8a, 0xeb, 0x18, + 0x67, 0xb0, 0x11, 0xd1, 0x3f, 0xdd, 0x30, 0x56, 0xb9, 0x43, 0xe4, 0x7e, 0xa1, 0x2f, 0x94, 0xe0, + 0xbc, 0x88, 0x60, 0x6c, 0xbd, 0x2e, 0x43, 0xb9, 0x13, 0x26, 0xc8, 0xe9, 0x93, 0x2e, 0x3a, 0x85, + 0x7c, 0xb0, 0x26, 0xa1, 0xc6, 0x62, 0xf2, 0xcc, 0xed, 0x52, 0xfa, 0xb6, 0xfa, 0x52, 0x5a, 0xe1, + 0xc1, 0x86, 0x62, 0x0d, 0x42, 0x1f, 0x2a, 0xd2, 0x31, 0x61, 0xfd, 0xd2, 0x8f, 0x32, 0xf1, 0x4a, + 0xbc, 0x5b, 0xd8, 0x54, 0xef, 0x2c, 0xe8, 0xc1, 0xa2, 0x9a, 0xd4, 0x6d, 0x4a, 0x37, 0xb3, 0xb2, + 0x4b, 0xe0, 0x97, 0x50, 0x53, 0xcd, 0x6c, 0x74, 0x94, 0x6d, 0xb5, 0x11, 0xa0, 0xc7, 0xcb, 0xec, + 0x41, 0x12, 0x32, 0xd6, 0xa9, 0x95, 0x90, 0x49, 0xc3, 0x5f, 0x5f, 0xaa, 0xf9, 0xa3, 0x89, 0x7a, + 0x93, 0x90, 0x0d, 0x12, 0xbd, 0x41, 0x59, 0xb4, 0x8f, 0x2e, 0x09, 0xfd, 0x9b, 0x06, 0xbb, 0xca, + 0x21, 0x37, 0xed, 0x9f, 0xa8, 0x99, 0xae, 0x30, 0xd6, 0x69, 0xf5, 0x07, 0x59, 0x2c, 0x98, 0x39, + 0xfc, 0x77, 0x8d, 0x7f, 0x27, 0x24, 0xf4, 0x4d, 0xf4, 0x30, 0x7b, 0x8f, 0x0d, 0x0d, 0x38, 0xb9, + 0x43, 0x5b, 0x46, 0x7f, 0x6a, 0x69, 0x33, 0x31, 0x8c, 0xc5, 0xa7, 0xd9, 0x55, 0x2f, 0xc4, 0xe5, + 0x4e, 0x46, 0xbd, 0xd6, 0xe0, 0xfd, 0x2c, 0x43, 0x0e, 0x7d, 0xb6, 0x84, 0xf6, 0x58, 0xc0, 0xee, + 0x64, 0x9a, 0xa8, 0x93, 0x58, 0xff, 0x56, 0xd6, 0x49, 0xd2, 0xbc, 0x51, 0x26, 0x6b, 0xf2, 0x48, + 0xb8, 0xe2, 0x90, 0xb1, 0xe6, 0xaf, 0x84, 0x4c, 0x1a, 0x11, 0xfa, 0xc1, 0x22, 0xb3, 0xaa, 0xcd, + 0x3b, 0x80, 0xe2, 0xa3, 0x02, 0x7d, 0xa0, 0xc0, 0x51, 0x8f, 0x93, 0x4c, 0x28, 0x6d, 0x0b, 0x76, + 0x88, 0x3f, 0x30, 0x89, 0xc7, 0x79, 0xf9, 0x37, 0xf5, 0xe5, 0xf8, 0xf9, 0x4c, 0xe8, 0xa7, 0x87, + 0x03, 0x97, 0x5d, 0x8d, 0x2f, 0xcd, 0x3e, 0xb9, 0x6e, 0x0a, 0xae, 0x26, 0xff, 0x13, 0xb2, 0x36, + 0x07, 0xa4, 0x19, 0xfd, 0x77, 0xc1, 0xe5, 0x1a, 0xbf, 0x3b, 0xf9, 0x2f, 0x00, 0x00, 0xff, 0xff, + 0x06, 0xe4, 0x2a, 0xee, 0x47, 0x10, 0x00, 0x00, } diff --git a/protobuf/go/flow/execution/execution_grpc.pb.go b/protobuf/go/flow/execution/execution_grpc.pb.go index 41d272024..4c6136a15 100644 --- a/protobuf/go/flow/execution/execution_grpc.pb.go +++ b/protobuf/go/flow/execution/execution_grpc.pb.go @@ -34,14 +34,18 @@ type ExecutionAPIClient interface { GetEventsForBlockIDs(ctx context.Context, in *GetEventsForBlockIDsRequest, opts ...grpc.CallOption) (*GetEventsForBlockIDsResponse, error) // GetTransactionResult gets the result of a transaction. GetTransactionResult(ctx context.Context, in *GetTransactionResultRequest, opts ...grpc.CallOption) (*GetTransactionResultResponse, error) - // GetTransactionResultByIndex gets the result of a transaction at the index . + // GetTransactionResultByIndex gets the result of a transaction at the index. GetTransactionResultByIndex(ctx context.Context, in *GetTransactionByIndexRequest, opts ...grpc.CallOption) (*GetTransactionResultResponse, error) // GetTransactionResultByIndex gets the results of all transactions in the - // block ordered by transaction index + // block ordered by transaction index. GetTransactionResultsByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionResultsResponse, error) + // GetTransactionErrorMessage gets the error messages of a failed transaction by id. + GetTransactionErrorMessage(ctx context.Context, in *GetTransactionErrorMessageRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) + // GetTransactionErrorMessageByIndex gets the error messages of a failed transaction at the index. + GetTransactionErrorMessageByIndex(ctx context.Context, in *GetTransactionErrorMessageByIndexRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the - // block ordered by transaction index - GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) + // block ordered by transaction index. + GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionErrorMessagesByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) // GetRegisterAtBlockID collects a register at the block with the given ID (if // available). GetRegisterAtBlockID(ctx context.Context, in *GetRegisterAtBlockIDRequest, opts ...grpc.CallOption) (*GetRegisterAtBlockIDResponse, error) @@ -122,7 +126,25 @@ func (c *executionAPIClient) GetTransactionResultsByBlockID(ctx context.Context, return out, nil } -func (c *executionAPIClient) GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) { +func (c *executionAPIClient) GetTransactionErrorMessage(ctx context.Context, in *GetTransactionErrorMessageRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) { + out := new(GetTransactionErrorMessagesResponse) + err := c.cc.Invoke(ctx, "/flow.execution.ExecutionAPI/GetTransactionErrorMessage", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *executionAPIClient) GetTransactionErrorMessageByIndex(ctx context.Context, in *GetTransactionErrorMessageByIndexRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) { + out := new(GetTransactionErrorMessagesResponse) + err := c.cc.Invoke(ctx, "/flow.execution.ExecutionAPI/GetTransactionErrorMessageByIndex", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *executionAPIClient) GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionErrorMessagesByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) { out := new(GetTransactionErrorMessagesResponse) err := c.cc.Invoke(ctx, "/flow.execution.ExecutionAPI/GetTransactionErrorMessagesByBlockID", in, out, opts...) if err != nil { @@ -174,14 +196,18 @@ type ExecutionAPIServer interface { GetEventsForBlockIDs(context.Context, *GetEventsForBlockIDsRequest) (*GetEventsForBlockIDsResponse, error) // GetTransactionResult gets the result of a transaction. GetTransactionResult(context.Context, *GetTransactionResultRequest) (*GetTransactionResultResponse, error) - // GetTransactionResultByIndex gets the result of a transaction at the index . + // GetTransactionResultByIndex gets the result of a transaction at the index. GetTransactionResultByIndex(context.Context, *GetTransactionByIndexRequest) (*GetTransactionResultResponse, error) // GetTransactionResultByIndex gets the results of all transactions in the - // block ordered by transaction index + // block ordered by transaction index. GetTransactionResultsByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionResultsResponse, error) + // GetTransactionErrorMessage gets the error messages of a failed transaction by id. + GetTransactionErrorMessage(context.Context, *GetTransactionErrorMessageRequest) (*GetTransactionErrorMessagesResponse, error) + // GetTransactionErrorMessageByIndex gets the error messages of a failed transaction at the index. + GetTransactionErrorMessageByIndex(context.Context, *GetTransactionErrorMessageByIndexRequest) (*GetTransactionErrorMessagesResponse, error) // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the - // block ordered by transaction index - GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) + // block ordered by transaction index. + GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionErrorMessagesByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) // GetRegisterAtBlockID collects a register at the block with the given ID (if // available). GetRegisterAtBlockID(context.Context, *GetRegisterAtBlockIDRequest) (*GetRegisterAtBlockIDResponse, error) @@ -216,7 +242,13 @@ func (UnimplementedExecutionAPIServer) GetTransactionResultByIndex(context.Conte func (UnimplementedExecutionAPIServer) GetTransactionResultsByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionResultsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetTransactionResultsByBlockID not implemented") } -func (UnimplementedExecutionAPIServer) GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) { +func (UnimplementedExecutionAPIServer) GetTransactionErrorMessage(context.Context, *GetTransactionErrorMessageRequest) (*GetTransactionErrorMessagesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetTransactionErrorMessage not implemented") +} +func (UnimplementedExecutionAPIServer) GetTransactionErrorMessageByIndex(context.Context, *GetTransactionErrorMessageByIndexRequest) (*GetTransactionErrorMessagesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetTransactionErrorMessageByIndex not implemented") +} +func (UnimplementedExecutionAPIServer) GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionErrorMessagesByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetTransactionErrorMessagesByBlockID not implemented") } func (UnimplementedExecutionAPIServer) GetRegisterAtBlockID(context.Context, *GetRegisterAtBlockIDRequest) (*GetRegisterAtBlockIDResponse, error) { @@ -366,8 +398,44 @@ func _ExecutionAPI_GetTransactionResultsByBlockID_Handler(srv interface{}, ctx c return interceptor(ctx, in, info, handler) } +func _ExecutionAPI_GetTransactionErrorMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetTransactionErrorMessageRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ExecutionAPIServer).GetTransactionErrorMessage(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/flow.execution.ExecutionAPI/GetTransactionErrorMessage", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ExecutionAPIServer).GetTransactionErrorMessage(ctx, req.(*GetTransactionErrorMessageRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ExecutionAPI_GetTransactionErrorMessageByIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetTransactionErrorMessageByIndexRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ExecutionAPIServer).GetTransactionErrorMessageByIndex(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/flow.execution.ExecutionAPI/GetTransactionErrorMessageByIndex", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ExecutionAPIServer).GetTransactionErrorMessageByIndex(ctx, req.(*GetTransactionErrorMessageByIndexRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ExecutionAPI_GetTransactionErrorMessagesByBlockID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetTransactionsByBlockIDRequest) + in := new(GetTransactionErrorMessagesByBlockIDRequest) if err := dec(in); err != nil { return nil, err } @@ -379,7 +447,7 @@ func _ExecutionAPI_GetTransactionErrorMessagesByBlockID_Handler(srv interface{}, FullMethod: "/flow.execution.ExecutionAPI/GetTransactionErrorMessagesByBlockID", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ExecutionAPIServer).GetTransactionErrorMessagesByBlockID(ctx, req.(*GetTransactionsByBlockIDRequest)) + return srv.(ExecutionAPIServer).GetTransactionErrorMessagesByBlockID(ctx, req.(*GetTransactionErrorMessagesByBlockIDRequest)) } return interceptor(ctx, in, info, handler) } @@ -473,6 +541,14 @@ var ExecutionAPI_ServiceDesc = grpc.ServiceDesc{ MethodName: "GetTransactionResultsByBlockID", Handler: _ExecutionAPI_GetTransactionResultsByBlockID_Handler, }, + { + MethodName: "GetTransactionErrorMessage", + Handler: _ExecutionAPI_GetTransactionErrorMessage_Handler, + }, + { + MethodName: "GetTransactionErrorMessageByIndex", + Handler: _ExecutionAPI_GetTransactionErrorMessageByIndex_Handler, + }, { MethodName: "GetTransactionErrorMessagesByBlockID", Handler: _ExecutionAPI_GetTransactionErrorMessagesByBlockID_Handler,