954 lines
30 KiB
Go
954 lines
30 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
// versions:
|
||
// protoc-gen-go v1.26.0
|
||
// protoc v4.22.2
|
||
// source: block.proto
|
||
|
||
package pb
|
||
|
||
import (
|
||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
|
||
reflect "reflect"
|
||
sync "sync"
|
||
)
|
||
|
||
const (
|
||
// Verify that this generated code is sufficiently up-to-date.
|
||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||
)
|
||
|
||
type TxValidationCode int32
|
||
|
||
const (
|
||
TxValidationCode_VALID TxValidationCode = 0
|
||
TxValidationCode_NIL_ENVELOPE TxValidationCode = 1
|
||
TxValidationCode_BAD_PAYLOAD TxValidationCode = 2
|
||
TxValidationCode_BAD_SIGNATURE_HEADER TxValidationCode = 3
|
||
TxValidationCode_BAD_CREATOR_SIGNATURE TxValidationCode = 4
|
||
TxValidationCode_INVALID_ENDORSER_TRANSACTION TxValidationCode = 5
|
||
TxValidationCode_BAD_TXID TxValidationCode = 6
|
||
TxValidationCode_NIL_TXACTION TxValidationCode = 7
|
||
TxValidationCode_EXPIRED_CHAINCODE TxValidationCode = 8
|
||
TxValidationCode_BAD_RWSET TxValidationCode = 9
|
||
TxValidationCode_NOT_VALIDATED TxValidationCode = 254
|
||
TxValidationCode_INVALID_OTHER_REASON TxValidationCode = 255
|
||
)
|
||
|
||
// Enum value maps for TxValidationCode.
|
||
var (
|
||
TxValidationCode_name = map[int32]string{
|
||
0: "VALID",
|
||
1: "NIL_ENVELOPE",
|
||
2: "BAD_PAYLOAD",
|
||
3: "BAD_SIGNATURE_HEADER",
|
||
4: "BAD_CREATOR_SIGNATURE",
|
||
5: "INVALID_ENDORSER_TRANSACTION",
|
||
6: "BAD_TXID",
|
||
7: "NIL_TXACTION",
|
||
8: "EXPIRED_CHAINCODE",
|
||
9: "BAD_RWSET",
|
||
254: "NOT_VALIDATED",
|
||
255: "INVALID_OTHER_REASON",
|
||
}
|
||
TxValidationCode_value = map[string]int32{
|
||
"VALID": 0,
|
||
"NIL_ENVELOPE": 1,
|
||
"BAD_PAYLOAD": 2,
|
||
"BAD_SIGNATURE_HEADER": 3,
|
||
"BAD_CREATOR_SIGNATURE": 4,
|
||
"INVALID_ENDORSER_TRANSACTION": 5,
|
||
"BAD_TXID": 6,
|
||
"NIL_TXACTION": 7,
|
||
"EXPIRED_CHAINCODE": 8,
|
||
"BAD_RWSET": 9,
|
||
"NOT_VALIDATED": 254,
|
||
"INVALID_OTHER_REASON": 255,
|
||
}
|
||
)
|
||
|
||
func (x TxValidationCode) Enum() *TxValidationCode {
|
||
p := new(TxValidationCode)
|
||
*p = x
|
||
return p
|
||
}
|
||
|
||
func (x TxValidationCode) String() string {
|
||
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||
}
|
||
|
||
func (TxValidationCode) Descriptor() protoreflect.EnumDescriptor {
|
||
return file_block_proto_enumTypes[0].Descriptor()
|
||
}
|
||
|
||
func (TxValidationCode) Type() protoreflect.EnumType {
|
||
return &file_block_proto_enumTypes[0]
|
||
}
|
||
|
||
func (x TxValidationCode) Number() protoreflect.EnumNumber {
|
||
return protoreflect.EnumNumber(x)
|
||
}
|
||
|
||
// Deprecated: Use TxValidationCode.Descriptor instead.
|
||
func (TxValidationCode) EnumDescriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{0}
|
||
}
|
||
|
||
// 一个区块由区块头,区块体和元数据组成
|
||
type Block struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Header *BlockHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
|
||
Data *BlockData `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
||
Metadata *BlockMetadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
||
}
|
||
|
||
func (x *Block) Reset() {
|
||
*x = Block{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[0]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *Block) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*Block) ProtoMessage() {}
|
||
|
||
func (x *Block) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[0]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use Block.ProtoReflect.Descriptor instead.
|
||
func (*Block) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{0}
|
||
}
|
||
|
||
func (x *Block) GetHeader() *BlockHeader {
|
||
if x != nil {
|
||
return x.Header
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *Block) GetData() *BlockData {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *Block) GetMetadata() *BlockMetadata {
|
||
if x != nil {
|
||
return x.Metadata
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 区块头包含区块高度,前一个区块的hash,本区快的hash以及区块体的hash
|
||
type BlockHeader struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Number uint64 `protobuf:"varint,1,opt,name=Number,proto3" json:"Number,omitempty"`
|
||
PreviousHash []byte `protobuf:"bytes,2,opt,name=PreviousHash,proto3" json:"PreviousHash,omitempty"`
|
||
Hash []byte `protobuf:"bytes,3,opt,name=Hash,proto3" json:"Hash,omitempty"`
|
||
Timestamp *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=Timestamp,proto3" json:"Timestamp,omitempty"`
|
||
DataHash []byte `protobuf:"bytes,5,opt,name=DataHash,proto3" json:"DataHash,omitempty"`
|
||
}
|
||
|
||
func (x *BlockHeader) Reset() {
|
||
*x = BlockHeader{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[1]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *BlockHeader) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*BlockHeader) ProtoMessage() {}
|
||
|
||
func (x *BlockHeader) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[1]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use BlockHeader.ProtoReflect.Descriptor instead.
|
||
func (*BlockHeader) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{1}
|
||
}
|
||
|
||
func (x *BlockHeader) GetNumber() uint64 {
|
||
if x != nil {
|
||
return x.Number
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *BlockHeader) GetPreviousHash() []byte {
|
||
if x != nil {
|
||
return x.PreviousHash
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *BlockHeader) GetHash() []byte {
|
||
if x != nil {
|
||
return x.Hash
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *BlockHeader) GetTimestamp() *timestamppb.Timestamp {
|
||
if x != nil {
|
||
return x.Timestamp
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *BlockHeader) GetDataHash() []byte {
|
||
if x != nil {
|
||
return x.DataHash
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type BlockData struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Data [][]byte `protobuf:"bytes,1,rep,name=Data,proto3" json:"Data,omitempty"`
|
||
}
|
||
|
||
func (x *BlockData) Reset() {
|
||
*x = BlockData{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[2]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *BlockData) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*BlockData) ProtoMessage() {}
|
||
|
||
func (x *BlockData) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[2]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use BlockData.ProtoReflect.Descriptor instead.
|
||
func (*BlockData) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{2}
|
||
}
|
||
|
||
func (x *BlockData) GetData() [][]byte {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type Envelopes struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Envelope []*Envelope `protobuf:"bytes,1,rep,name=Envelope,proto3" json:"Envelope,omitempty"`
|
||
}
|
||
|
||
func (x *Envelopes) Reset() {
|
||
*x = Envelopes{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[3]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *Envelopes) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*Envelopes) ProtoMessage() {}
|
||
|
||
func (x *Envelopes) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[3]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use Envelopes.ProtoReflect.Descriptor instead.
|
||
func (*Envelopes) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{3}
|
||
}
|
||
|
||
func (x *Envelopes) GetEnvelope() []*Envelope {
|
||
if x != nil {
|
||
return x.Envelope
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type Envelope struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
TxID string `protobuf:"bytes,1,opt,name=txID,proto3" json:"txID,omitempty"`
|
||
Payload []byte `protobuf:"bytes,2,opt,name=Payload,proto3" json:"Payload,omitempty"`
|
||
Signature []byte `protobuf:"bytes,3,opt,name=Signature,proto3" json:"Signature,omitempty"`
|
||
}
|
||
|
||
func (x *Envelope) Reset() {
|
||
*x = Envelope{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[4]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *Envelope) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*Envelope) ProtoMessage() {}
|
||
|
||
func (x *Envelope) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[4]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use Envelope.ProtoReflect.Descriptor instead.
|
||
func (*Envelope) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{4}
|
||
}
|
||
|
||
func (x *Envelope) GetTxID() string {
|
||
if x != nil {
|
||
return x.TxID
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *Envelope) GetPayload() []byte {
|
||
if x != nil {
|
||
return x.Payload
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *Envelope) GetSignature() []byte {
|
||
if x != nil {
|
||
return x.Signature
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type Payload struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
SignatureHeader *SignatureHeader `protobuf:"bytes,1,opt,name=SignatureHeader,proto3" json:"SignatureHeader,omitempty"`
|
||
Data []byte `protobuf:"bytes,2,opt,name=Data,proto3" json:"Data,omitempty"`
|
||
}
|
||
|
||
func (x *Payload) Reset() {
|
||
*x = Payload{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[5]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *Payload) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*Payload) ProtoMessage() {}
|
||
|
||
func (x *Payload) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[5]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use Payload.ProtoReflect.Descriptor instead.
|
||
func (*Payload) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{5}
|
||
}
|
||
|
||
func (x *Payload) GetSignatureHeader() *SignatureHeader {
|
||
if x != nil {
|
||
return x.SignatureHeader
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *Payload) GetData() []byte {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type SignatureHeader struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Creator []byte `protobuf:"bytes,1,opt,name=Creator,proto3" json:"Creator,omitempty"`
|
||
Nonce []byte `protobuf:"bytes,2,opt,name=Nonce,proto3" json:"Nonce,omitempty"`
|
||
}
|
||
|
||
func (x *SignatureHeader) Reset() {
|
||
*x = SignatureHeader{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[6]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *SignatureHeader) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*SignatureHeader) ProtoMessage() {}
|
||
|
||
func (x *SignatureHeader) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[6]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use SignatureHeader.ProtoReflect.Descriptor instead.
|
||
func (*SignatureHeader) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{6}
|
||
}
|
||
|
||
func (x *SignatureHeader) GetCreator() []byte {
|
||
if x != nil {
|
||
return x.Creator
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *SignatureHeader) GetNonce() []byte {
|
||
if x != nil {
|
||
return x.Nonce
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type Creator struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
IdBytes []byte `protobuf:"bytes,1,opt,name=IdBytes,proto3" json:"IdBytes,omitempty"`
|
||
Mspid string `protobuf:"bytes,2,opt,name=Mspid,proto3" json:"Mspid,omitempty"`
|
||
}
|
||
|
||
func (x *Creator) Reset() {
|
||
*x = Creator{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[7]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *Creator) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*Creator) ProtoMessage() {}
|
||
|
||
func (x *Creator) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[7]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use Creator.ProtoReflect.Descriptor instead.
|
||
func (*Creator) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{7}
|
||
}
|
||
|
||
func (x *Creator) GetIdBytes() []byte {
|
||
if x != nil {
|
||
return x.IdBytes
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *Creator) GetMspid() string {
|
||
if x != nil {
|
||
return x.Mspid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type ValidationCodes struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Transaction_State []TxValidationCode `protobuf:"varint,1,rep,packed,name=Transaction_State,json=TransactionState,proto3,enum=TxValidationCode" json:"Transaction_State,omitempty"`
|
||
}
|
||
|
||
func (x *ValidationCodes) Reset() {
|
||
*x = ValidationCodes{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[8]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *ValidationCodes) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*ValidationCodes) ProtoMessage() {}
|
||
|
||
func (x *ValidationCodes) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[8]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use ValidationCodes.ProtoReflect.Descriptor instead.
|
||
func (*ValidationCodes) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{8}
|
||
}
|
||
|
||
func (x *ValidationCodes) GetTransaction_State() []TxValidationCode {
|
||
if x != nil {
|
||
return x.Transaction_State
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type BlockMetadata struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
SignatureHeader *SignatureHeader `protobuf:"bytes,1,opt,name=SignatureHeader,proto3" json:"SignatureHeader,omitempty"`
|
||
Signature []byte `protobuf:"bytes,2,opt,name=Signature,proto3" json:"Signature,omitempty"`
|
||
Transaction_State []*ValidationCodes `protobuf:"bytes,3,rep,name=Transaction_State,json=TransactionState,proto3" json:"Transaction_State,omitempty"`
|
||
}
|
||
|
||
func (x *BlockMetadata) Reset() {
|
||
*x = BlockMetadata{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_block_proto_msgTypes[9]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *BlockMetadata) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*BlockMetadata) ProtoMessage() {}
|
||
|
||
func (x *BlockMetadata) ProtoReflect() protoreflect.Message {
|
||
mi := &file_block_proto_msgTypes[9]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use BlockMetadata.ProtoReflect.Descriptor instead.
|
||
func (*BlockMetadata) Descriptor() ([]byte, []int) {
|
||
return file_block_proto_rawDescGZIP(), []int{9}
|
||
}
|
||
|
||
func (x *BlockMetadata) GetSignatureHeader() *SignatureHeader {
|
||
if x != nil {
|
||
return x.SignatureHeader
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *BlockMetadata) GetSignature() []byte {
|
||
if x != nil {
|
||
return x.Signature
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *BlockMetadata) GetTransaction_State() []*ValidationCodes {
|
||
if x != nil {
|
||
return x.Transaction_State
|
||
}
|
||
return nil
|
||
}
|
||
|
||
var File_block_proto protoreflect.FileDescriptor
|
||
|
||
var file_block_proto_rawDesc = []byte{
|
||
0x0a, 0x0b, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
|
||
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74,
|
||
0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x79,
|
||
0x0a, 0x05, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65,
|
||
0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x48,
|
||
0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1e, 0x0a,
|
||
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x6c,
|
||
0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x2a, 0x0a,
|
||
0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||
0x0e, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52,
|
||
0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb3, 0x01, 0x0a, 0x0b, 0x42, 0x6c,
|
||
0x6f, 0x63, 0x6b, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x75, 0x6d,
|
||
0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65,
|
||
0x72, 0x12, 0x22, 0x0a, 0x0c, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x48, 0x61, 0x73,
|
||
0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75,
|
||
0x73, 0x48, 0x61, 0x73, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x61, 0x73, 0x68, 0x18, 0x03, 0x20,
|
||
0x01, 0x28, 0x0c, 0x52, 0x04, 0x48, 0x61, 0x73, 0x68, 0x12, 0x38, 0x0a, 0x09, 0x54, 0x69, 0x6d,
|
||
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
|
||
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
|
||
0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
||
0x61, 0x6d, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x44, 0x61, 0x74, 0x61, 0x48, 0x61, 0x73, 0x68, 0x18,
|
||
0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x44, 0x61, 0x74, 0x61, 0x48, 0x61, 0x73, 0x68, 0x22,
|
||
0x1f, 0x0a, 0x09, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04,
|
||
0x44, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x04, 0x44, 0x61, 0x74, 0x61,
|
||
0x22, 0x32, 0x0a, 0x09, 0x45, 0x6e, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x65, 0x73, 0x12, 0x25, 0x0a,
|
||
0x08, 0x45, 0x6e, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||
0x09, 0x2e, 0x45, 0x6e, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x65, 0x52, 0x08, 0x45, 0x6e, 0x76, 0x65,
|
||
0x6c, 0x6f, 0x70, 0x65, 0x22, 0x56, 0x0a, 0x08, 0x45, 0x6e, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x65,
|
||
0x12, 0x12, 0x0a, 0x04, 0x74, 0x78, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
||
0x74, 0x78, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18,
|
||
0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x1c,
|
||
0x0a, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||
0x0c, 0x52, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x22, 0x59, 0x0a, 0x07,
|
||
0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x3a, 0x0a, 0x0f, 0x53, 0x69, 0x67, 0x6e, 0x61,
|
||
0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
||
0x32, 0x10, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x61, 0x64,
|
||
0x65, 0x72, 0x52, 0x0f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x61,
|
||
0x64, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||
0x0c, 0x52, 0x04, 0x44, 0x61, 0x74, 0x61, 0x22, 0x41, 0x0a, 0x0f, 0x53, 0x69, 0x67, 0x6e, 0x61,
|
||
0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x72,
|
||
0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x43, 0x72, 0x65,
|
||
0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x4e, 0x6f, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20,
|
||
0x01, 0x28, 0x0c, 0x52, 0x05, 0x4e, 0x6f, 0x6e, 0x63, 0x65, 0x22, 0x39, 0x0a, 0x07, 0x43, 0x72,
|
||
0x65, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73,
|
||
0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x49, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12,
|
||
0x14, 0x0a, 0x05, 0x4d, 0x73, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
|
||
0x4d, 0x73, 0x70, 0x69, 0x64, 0x22, 0x51, 0x0a, 0x0f, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
|
||
0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x11, 0x54, 0x72, 0x61, 0x6e,
|
||
0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20,
|
||
0x03, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x54, 0x78, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
|
||
0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x10, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
|
||
0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x22, 0xa8, 0x01, 0x0a, 0x0d, 0x42, 0x6c, 0x6f,
|
||
0x63, 0x6b, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x3a, 0x0a, 0x0f, 0x53, 0x69,
|
||
0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
|
||
0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48,
|
||
0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x0f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
|
||
0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74,
|
||
0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61,
|
||
0x74, 0x75, 0x72, 0x65, 0x12, 0x3d, 0x0a, 0x11, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
|
||
0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||
0x10, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65,
|
||
0x73, 0x52, 0x10, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
|
||
0x61, 0x74, 0x65, 0x2a, 0x8c, 0x02, 0x0a, 0x10, 0x54, 0x78, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
|
||
0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x41, 0x4c, 0x49,
|
||
0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x49, 0x4c, 0x5f, 0x45, 0x4e, 0x56, 0x45, 0x4c,
|
||
0x4f, 0x50, 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x42, 0x41, 0x44, 0x5f, 0x50, 0x41, 0x59,
|
||
0x4c, 0x4f, 0x41, 0x44, 0x10, 0x02, 0x12, 0x18, 0x0a, 0x14, 0x42, 0x41, 0x44, 0x5f, 0x53, 0x49,
|
||
0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x48, 0x45, 0x41, 0x44, 0x45, 0x52, 0x10, 0x03,
|
||
0x12, 0x19, 0x0a, 0x15, 0x42, 0x41, 0x44, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x4f, 0x52, 0x5f,
|
||
0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x10, 0x04, 0x12, 0x20, 0x0a, 0x1c, 0x49,
|
||
0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x45, 0x4e, 0x44, 0x4f, 0x52, 0x53, 0x45, 0x52, 0x5f,
|
||
0x54, 0x52, 0x41, 0x4e, 0x53, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x05, 0x12, 0x0c, 0x0a,
|
||
0x08, 0x42, 0x41, 0x44, 0x5f, 0x54, 0x58, 0x49, 0x44, 0x10, 0x06, 0x12, 0x10, 0x0a, 0x0c, 0x4e,
|
||
0x49, 0x4c, 0x5f, 0x54, 0x58, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x07, 0x12, 0x15, 0x0a,
|
||
0x11, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44, 0x5f, 0x43, 0x48, 0x41, 0x49, 0x4e, 0x43, 0x4f,
|
||
0x44, 0x45, 0x10, 0x08, 0x12, 0x0d, 0x0a, 0x09, 0x42, 0x41, 0x44, 0x5f, 0x52, 0x57, 0x53, 0x45,
|
||
0x54, 0x10, 0x09, 0x12, 0x12, 0x0a, 0x0d, 0x4e, 0x4f, 0x54, 0x5f, 0x56, 0x41, 0x4c, 0x49, 0x44,
|
||
0x41, 0x54, 0x45, 0x44, 0x10, 0xfe, 0x01, 0x12, 0x19, 0x0a, 0x14, 0x49, 0x4e, 0x56, 0x41, 0x4c,
|
||
0x49, 0x44, 0x5f, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x41, 0x53, 0x4f, 0x4e, 0x10,
|
||
0xff, 0x01, 0x42, 0x07, 0x5a, 0x05, 0x2e, 0x2f, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
||
0x74, 0x6f, 0x33,
|
||
}
|
||
|
||
var (
|
||
file_block_proto_rawDescOnce sync.Once
|
||
file_block_proto_rawDescData = file_block_proto_rawDesc
|
||
)
|
||
|
||
func file_block_proto_rawDescGZIP() []byte {
|
||
file_block_proto_rawDescOnce.Do(func() {
|
||
file_block_proto_rawDescData = protoimpl.X.CompressGZIP(file_block_proto_rawDescData)
|
||
})
|
||
return file_block_proto_rawDescData
|
||
}
|
||
|
||
var file_block_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||
var file_block_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
|
||
var file_block_proto_goTypes = []interface{}{
|
||
(TxValidationCode)(0), // 0: TxValidationCode
|
||
(*Block)(nil), // 1: Block
|
||
(*BlockHeader)(nil), // 2: BlockHeader
|
||
(*BlockData)(nil), // 3: BlockData
|
||
(*Envelopes)(nil), // 4: Envelopes
|
||
(*Envelope)(nil), // 5: Envelope
|
||
(*Payload)(nil), // 6: Payload
|
||
(*SignatureHeader)(nil), // 7: SignatureHeader
|
||
(*Creator)(nil), // 8: Creator
|
||
(*ValidationCodes)(nil), // 9: ValidationCodes
|
||
(*BlockMetadata)(nil), // 10: BlockMetadata
|
||
(*timestamppb.Timestamp)(nil), // 11: google.protobuf.Timestamp
|
||
}
|
||
var file_block_proto_depIdxs = []int32{
|
||
2, // 0: Block.header:type_name -> BlockHeader
|
||
3, // 1: Block.data:type_name -> BlockData
|
||
10, // 2: Block.metadata:type_name -> BlockMetadata
|
||
11, // 3: BlockHeader.Timestamp:type_name -> google.protobuf.Timestamp
|
||
5, // 4: Envelopes.Envelope:type_name -> Envelope
|
||
7, // 5: Payload.SignatureHeader:type_name -> SignatureHeader
|
||
0, // 6: ValidationCodes.Transaction_State:type_name -> TxValidationCode
|
||
7, // 7: BlockMetadata.SignatureHeader:type_name -> SignatureHeader
|
||
9, // 8: BlockMetadata.Transaction_State:type_name -> ValidationCodes
|
||
9, // [9:9] is the sub-list for method output_type
|
||
9, // [9:9] is the sub-list for method input_type
|
||
9, // [9:9] is the sub-list for extension type_name
|
||
9, // [9:9] is the sub-list for extension extendee
|
||
0, // [0:9] is the sub-list for field type_name
|
||
}
|
||
|
||
func init() { file_block_proto_init() }
|
||
func file_block_proto_init() {
|
||
if File_block_proto != nil {
|
||
return
|
||
}
|
||
if !protoimpl.UnsafeEnabled {
|
||
file_block_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*Block); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*BlockHeader); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*BlockData); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*Envelopes); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*Envelope); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*Payload); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*SignatureHeader); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*Creator); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*ValidationCodes); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_block_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*BlockMetadata); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
}
|
||
type x struct{}
|
||
out := protoimpl.TypeBuilder{
|
||
File: protoimpl.DescBuilder{
|
||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
RawDescriptor: file_block_proto_rawDesc,
|
||
NumEnums: 1,
|
||
NumMessages: 10,
|
||
NumExtensions: 0,
|
||
NumServices: 0,
|
||
},
|
||
GoTypes: file_block_proto_goTypes,
|
||
DependencyIndexes: file_block_proto_depIdxs,
|
||
EnumInfos: file_block_proto_enumTypes,
|
||
MessageInfos: file_block_proto_msgTypes,
|
||
}.Build()
|
||
File_block_proto = out.File
|
||
file_block_proto_rawDesc = nil
|
||
file_block_proto_goTypes = nil
|
||
file_block_proto_depIdxs = nil
|
||
}
|