|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: consensus.proto
|
|
|
|
|
|
|
|
package consensus
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
|
math "math"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
|
|
|
type MessageType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
MessageType_UNKNOWN MessageType = 0
|
|
|
|
MessageType_ANNOUNCE MessageType = 1
|
|
|
|
MessageType_PREPARE MessageType = 2
|
|
|
|
MessageType_PREPARED MessageType = 3
|
|
|
|
MessageType_COMMIT MessageType = 4
|
|
|
|
MessageType_COMMITTED MessageType = 5
|
|
|
|
)
|
|
|
|
|
|
|
|
var MessageType_name = map[int32]string{
|
|
|
|
0: "UNKNOWN",
|
|
|
|
1: "ANNOUNCE",
|
|
|
|
2: "PREPARE",
|
|
|
|
3: "PREPARED",
|
|
|
|
4: "COMMIT",
|
|
|
|
5: "COMMITTED",
|
|
|
|
}
|
|
|
|
|
|
|
|
var MessageType_value = map[string]int32{
|
|
|
|
"UNKNOWN": 0,
|
|
|
|
"ANNOUNCE": 1,
|
|
|
|
"PREPARE": 2,
|
|
|
|
"PREPARED": 3,
|
|
|
|
"COMMIT": 4,
|
|
|
|
"COMMITTED": 5,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x MessageType) String() string {
|
|
|
|
return proto.EnumName(MessageType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (MessageType) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_56f0f2c53b3de771, []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Message struct {
|
|
|
|
Type MessageType `protobuf:"varint,1,opt,name=type,proto3,enum=consensus.MessageType" json:"type,omitempty"`
|
|
|
|
ConsensusId uint32 `protobuf:"varint,2,opt,name=consensus_id,json=consensusId,proto3" json:"consensus_id,omitempty"`
|
|
|
|
SenderId uint32 `protobuf:"varint,3,opt,name=sender_id,json=senderId,proto3" json:"sender_id,omitempty"`
|
|
|
|
BlockHash []byte `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
|
|
|
|
Payload []byte `protobuf:"bytes,5,opt,name=payload,proto3" json:"payload,omitempty"`
|
|
|
|
Signature []byte `protobuf:"bytes,6,opt,name=signature,proto3" json:"signature,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) Reset() { *m = Message{} }
|
|
|
|
func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Message) ProtoMessage() {}
|
|
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_56f0f2c53b3de771, []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Message.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Message.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Message.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Message.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Message.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Message proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *Message) GetType() MessageType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return MessageType_UNKNOWN
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetConsensusId() uint32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.ConsensusId
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetSenderId() uint32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.SenderId
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetBlockHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.BlockHash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetPayload() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Payload
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetSignature() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Signature
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
proto.RegisterEnum("consensus.MessageType", MessageType_name, MessageType_value)
|
|
|
|
proto.RegisterType((*Message)(nil), "consensus.Message")
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("consensus.proto", fileDescriptor_56f0f2c53b3de771) }
|
|
|
|
|
|
|
|
var fileDescriptor_56f0f2c53b3de771 = []byte{
|
|
|
|
// 263 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xc1, 0x6a, 0xb3, 0x40,
|
|
|
|
0x14, 0x85, 0xff, 0x49, 0x8c, 0xc6, 0xab, 0xf9, 0x3b, 0xdc, 0x45, 0x19, 0x68, 0x0b, 0xb6, 0x2b,
|
|
|
|
0xc9, 0x22, 0x8b, 0xf6, 0x09, 0x42, 0x22, 0x54, 0x8a, 0x63, 0x10, 0x43, 0x77, 0x0d, 0x93, 0x38,
|
|
|
|
0xc4, 0xd0, 0xa0, 0xe2, 0x98, 0x85, 0xef, 0xd8, 0x87, 0x2a, 0x8e, 0xa9, 0xed, 0x6e, 0xce, 0xf7,
|
|
|
|
0x9d, 0x03, 0xc3, 0x85, 0x9b, 0x43, 0x59, 0x28, 0x59, 0xa8, 0x8b, 0x5a, 0x54, 0x75, 0xd9, 0x94,
|
|
|
|
0x68, 0x0f, 0xe0, 0xe9, 0x8b, 0x80, 0x15, 0x49, 0xa5, 0xc4, 0x51, 0xe2, 0x1c, 0x8c, 0xa6, 0xad,
|
|
|
|
0x24, 0x23, 0x1e, 0xf1, 0xff, 0x3f, 0xdf, 0x2e, 0x7e, 0x67, 0xd7, 0x46, 0xda, 0x56, 0x32, 0xd1,
|
|
|
|
0x1d, 0x7c, 0x04, 0x77, 0xd0, 0xbb, 0x53, 0xc6, 0x46, 0x1e, 0xf1, 0x67, 0x89, 0x33, 0xb0, 0x30,
|
|
|
|
0xc3, 0x3b, 0xb0, 0x95, 0x2c, 0x32, 0x59, 0x77, 0x7e, 0xac, 0xfd, 0xb4, 0x07, 0x61, 0x86, 0x0f,
|
|
|
|
0x00, 0xfb, 0x73, 0x79, 0xf8, 0xdc, 0xe5, 0x42, 0xe5, 0xcc, 0xf0, 0x88, 0xef, 0x26, 0xb6, 0x26,
|
|
|
|
0xaf, 0x42, 0xe5, 0xc8, 0xc0, 0xaa, 0x44, 0x7b, 0x2e, 0x45, 0xc6, 0x26, 0xda, 0xfd, 0x44, 0xbc,
|
|
|
|
0x07, 0x5b, 0x9d, 0x8e, 0x85, 0x68, 0x2e, 0xb5, 0x64, 0x66, 0xbf, 0x1b, 0xc0, 0xfc, 0x03, 0x9c,
|
|
|
|
0x3f, 0x7f, 0x45, 0x07, 0xac, 0x2d, 0x7f, 0xe3, 0xf1, 0x3b, 0xa7, 0xff, 0xd0, 0x85, 0xe9, 0x92,
|
|
|
|
0xf3, 0x78, 0xcb, 0x57, 0x01, 0x25, 0x9d, 0xda, 0x24, 0xc1, 0x66, 0x99, 0x04, 0x74, 0xd4, 0xa9,
|
|
|
|
0x6b, 0x58, 0xd3, 0x31, 0x02, 0x98, 0xab, 0x38, 0x8a, 0xc2, 0x94, 0x1a, 0x38, 0x03, 0xbb, 0x7f,
|
|
|
|
0xa7, 0xc1, 0x9a, 0x4e, 0xf6, 0xa6, 0x3e, 0xe0, 0xcb, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5,
|
|
|
|
0x30, 0x8a, 0xaf, 0x53, 0x01, 0x00, 0x00,
|
|
|
|
}
|