2018-07-17 18:39:04 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
2018-11-20 19:43:07 +00:00
|
|
|
// source: proto/beacon/p2p/v1/messages.proto
|
2018-07-17 18:39:04 +00:00
|
|
|
|
2018-10-06 15:30:15 +00:00
|
|
|
package ethereum_beacon_p2p_v1
|
2018-07-17 18:39:04 +00:00
|
|
|
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
2018-08-29 16:32:54 +00:00
|
|
|
type Topic int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
Topic_UNKNOWN Topic = 0
|
|
|
|
Topic_BEACON_BLOCK_HASH_ANNOUNCE Topic = 1
|
|
|
|
Topic_BEACON_BLOCK_REQUEST Topic = 2
|
|
|
|
Topic_BEACON_BLOCK_REQUEST_BY_SLOT_NUMBER Topic = 3
|
|
|
|
Topic_BEACON_BLOCK_RESPONSE Topic = 4
|
2018-11-19 01:59:11 +00:00
|
|
|
Topic_CHAIN_HEAD_REQUEST Topic = 5
|
|
|
|
Topic_CHAIN_HEAD_RESPONSE Topic = 6
|
|
|
|
Topic_CRYSTALLIZED_STATE_HASH_ANNOUNCE Topic = 7
|
|
|
|
Topic_CRYSTALLIZED_STATE_REQUEST Topic = 8
|
|
|
|
Topic_CRYSTALLIZED_STATE_RESPONSE Topic = 9
|
|
|
|
Topic_ACTIVE_STATE_HASH_ANNOUNCE Topic = 10
|
|
|
|
Topic_ACTIVE_STATE_REQUEST Topic = 11
|
|
|
|
Topic_ACTIVE_STATE_RESPONSE Topic = 12
|
2018-08-29 16:32:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var Topic_name = map[int32]string{
|
|
|
|
0: "UNKNOWN",
|
|
|
|
1: "BEACON_BLOCK_HASH_ANNOUNCE",
|
|
|
|
2: "BEACON_BLOCK_REQUEST",
|
|
|
|
3: "BEACON_BLOCK_REQUEST_BY_SLOT_NUMBER",
|
|
|
|
4: "BEACON_BLOCK_RESPONSE",
|
2018-11-19 01:59:11 +00:00
|
|
|
5: "CHAIN_HEAD_REQUEST",
|
|
|
|
6: "CHAIN_HEAD_RESPONSE",
|
|
|
|
7: "CRYSTALLIZED_STATE_HASH_ANNOUNCE",
|
|
|
|
8: "CRYSTALLIZED_STATE_REQUEST",
|
|
|
|
9: "CRYSTALLIZED_STATE_RESPONSE",
|
|
|
|
10: "ACTIVE_STATE_HASH_ANNOUNCE",
|
|
|
|
11: "ACTIVE_STATE_REQUEST",
|
|
|
|
12: "ACTIVE_STATE_RESPONSE",
|
2018-08-29 16:32:54 +00:00
|
|
|
}
|
|
|
|
var Topic_value = map[string]int32{
|
|
|
|
"UNKNOWN": 0,
|
|
|
|
"BEACON_BLOCK_HASH_ANNOUNCE": 1,
|
|
|
|
"BEACON_BLOCK_REQUEST": 2,
|
|
|
|
"BEACON_BLOCK_REQUEST_BY_SLOT_NUMBER": 3,
|
|
|
|
"BEACON_BLOCK_RESPONSE": 4,
|
2018-11-19 01:59:11 +00:00
|
|
|
"CHAIN_HEAD_REQUEST": 5,
|
|
|
|
"CHAIN_HEAD_RESPONSE": 6,
|
|
|
|
"CRYSTALLIZED_STATE_HASH_ANNOUNCE": 7,
|
|
|
|
"CRYSTALLIZED_STATE_REQUEST": 8,
|
|
|
|
"CRYSTALLIZED_STATE_RESPONSE": 9,
|
|
|
|
"ACTIVE_STATE_HASH_ANNOUNCE": 10,
|
|
|
|
"ACTIVE_STATE_REQUEST": 11,
|
|
|
|
"ACTIVE_STATE_RESPONSE": 12,
|
2018-08-29 16:32:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x Topic) String() string {
|
|
|
|
return proto.EnumName(Topic_name, int32(x))
|
|
|
|
}
|
|
|
|
func (Topic) EnumDescriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{0}
|
2018-08-29 16:32:54 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 19:53:02 +00:00
|
|
|
type BeaconBlockHashAnnounce struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *BeaconBlockHashAnnounce) Reset() { *m = BeaconBlockHashAnnounce{} }
|
|
|
|
func (m *BeaconBlockHashAnnounce) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BeaconBlockHashAnnounce) ProtoMessage() {}
|
|
|
|
func (*BeaconBlockHashAnnounce) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{0}
|
2018-07-28 19:53:02 +00:00
|
|
|
}
|
|
|
|
func (m *BeaconBlockHashAnnounce) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BeaconBlockHashAnnounce.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockHashAnnounce) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_BeaconBlockHashAnnounce.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *BeaconBlockHashAnnounce) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_BeaconBlockHashAnnounce.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockHashAnnounce) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_BeaconBlockHashAnnounce.Size(m)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockHashAnnounce) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_BeaconBlockHashAnnounce.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_BeaconBlockHashAnnounce proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *BeaconBlockHashAnnounce) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type BeaconBlockRequest struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *BeaconBlockRequest) Reset() { *m = BeaconBlockRequest{} }
|
|
|
|
func (m *BeaconBlockRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BeaconBlockRequest) ProtoMessage() {}
|
|
|
|
func (*BeaconBlockRequest) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{1}
|
2018-07-28 19:53:02 +00:00
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BeaconBlockRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_BeaconBlockRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *BeaconBlockRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_BeaconBlockRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_BeaconBlockRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_BeaconBlockRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_BeaconBlockRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *BeaconBlockRequest) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-08-07 12:12:10 +00:00
|
|
|
type BeaconBlockRequestBySlotNumber struct {
|
2018-10-06 15:30:15 +00:00
|
|
|
SlotNumber uint64 `protobuf:"varint,1,opt,name=slot_number,json=slotNumber,proto3" json:"slot_number,omitempty"`
|
2018-08-07 12:12:10 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) Reset() { *m = BeaconBlockRequestBySlotNumber{} }
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BeaconBlockRequestBySlotNumber) ProtoMessage() {}
|
|
|
|
func (*BeaconBlockRequestBySlotNumber) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{2}
|
2018-08-07 12:12:10 +00:00
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BeaconBlockRequestBySlotNumber.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_BeaconBlockRequestBySlotNumber.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *BeaconBlockRequestBySlotNumber) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_BeaconBlockRequestBySlotNumber.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_BeaconBlockRequestBySlotNumber.Size(m)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_BeaconBlockRequestBySlotNumber.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_BeaconBlockRequestBySlotNumber proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *BeaconBlockRequestBySlotNumber) GetSlotNumber() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.SlotNumber
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-28 19:53:02 +00:00
|
|
|
type BeaconBlockResponse struct {
|
2018-10-06 15:30:15 +00:00
|
|
|
Block *BeaconBlock `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"`
|
|
|
|
Attestation *AggregatedAttestation `protobuf:"bytes,2,opt,name=attestation,proto3" json:"attestation,omitempty"`
|
2018-09-15 14:51:17 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-07-28 19:53:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *BeaconBlockResponse) Reset() { *m = BeaconBlockResponse{} }
|
|
|
|
func (m *BeaconBlockResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BeaconBlockResponse) ProtoMessage() {}
|
|
|
|
func (*BeaconBlockResponse) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{3}
|
2018-07-28 19:53:02 +00:00
|
|
|
}
|
|
|
|
func (m *BeaconBlockResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BeaconBlockResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_BeaconBlockResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *BeaconBlockResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_BeaconBlockResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_BeaconBlockResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *BeaconBlockResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_BeaconBlockResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_BeaconBlockResponse proto.InternalMessageInfo
|
|
|
|
|
2018-08-05 23:23:31 +00:00
|
|
|
func (m *BeaconBlockResponse) GetBlock() *BeaconBlock {
|
|
|
|
if m != nil {
|
|
|
|
return m.Block
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-09-15 14:51:17 +00:00
|
|
|
func (m *BeaconBlockResponse) GetAttestation() *AggregatedAttestation {
|
|
|
|
if m != nil {
|
|
|
|
return m.Attestation
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-19 01:59:11 +00:00
|
|
|
type ChainHeadRequest struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChainHeadRequest) Reset() { *m = ChainHeadRequest{} }
|
|
|
|
func (m *ChainHeadRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ChainHeadRequest) ProtoMessage() {}
|
|
|
|
func (*ChainHeadRequest) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{4}
|
2018-11-19 01:59:11 +00:00
|
|
|
}
|
|
|
|
func (m *ChainHeadRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ChainHeadRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ChainHeadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ChainHeadRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *ChainHeadRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ChainHeadRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *ChainHeadRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ChainHeadRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ChainHeadRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ChainHeadRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ChainHeadRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
type ChainHeadResponse struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
Slot uint64 `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
|
|
|
|
Block *BeaconBlock `protobuf:"bytes,3,opt,name=block,proto3" json:"block,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChainHeadResponse) Reset() { *m = ChainHeadResponse{} }
|
|
|
|
func (m *ChainHeadResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ChainHeadResponse) ProtoMessage() {}
|
|
|
|
func (*ChainHeadResponse) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{5}
|
2018-11-19 01:59:11 +00:00
|
|
|
}
|
|
|
|
func (m *ChainHeadResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ChainHeadResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ChainHeadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ChainHeadResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *ChainHeadResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ChainHeadResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *ChainHeadResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ChainHeadResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ChainHeadResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ChainHeadResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ChainHeadResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ChainHeadResponse) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChainHeadResponse) GetSlot() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Slot
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChainHeadResponse) GetBlock() *BeaconBlock {
|
|
|
|
if m != nil {
|
|
|
|
return m.Block
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-31 00:29:40 +00:00
|
|
|
type CrystallizedStateHashAnnounce struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CrystallizedStateHashAnnounce) Reset() { *m = CrystallizedStateHashAnnounce{} }
|
|
|
|
func (m *CrystallizedStateHashAnnounce) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*CrystallizedStateHashAnnounce) ProtoMessage() {}
|
|
|
|
func (*CrystallizedStateHashAnnounce) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{6}
|
2018-07-31 00:29:40 +00:00
|
|
|
}
|
|
|
|
func (m *CrystallizedStateHashAnnounce) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_CrystallizedStateHashAnnounce.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateHashAnnounce) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_CrystallizedStateHashAnnounce.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *CrystallizedStateHashAnnounce) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_CrystallizedStateHashAnnounce.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateHashAnnounce) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_CrystallizedStateHashAnnounce.Size(m)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateHashAnnounce) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_CrystallizedStateHashAnnounce.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_CrystallizedStateHashAnnounce proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *CrystallizedStateHashAnnounce) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type CrystallizedStateRequest struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CrystallizedStateRequest) Reset() { *m = CrystallizedStateRequest{} }
|
|
|
|
func (m *CrystallizedStateRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*CrystallizedStateRequest) ProtoMessage() {}
|
|
|
|
func (*CrystallizedStateRequest) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{7}
|
2018-07-31 00:29:40 +00:00
|
|
|
}
|
|
|
|
func (m *CrystallizedStateRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_CrystallizedStateRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_CrystallizedStateRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *CrystallizedStateRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_CrystallizedStateRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_CrystallizedStateRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_CrystallizedStateRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_CrystallizedStateRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *CrystallizedStateRequest) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type CrystallizedStateResponse struct {
|
2018-10-06 15:30:15 +00:00
|
|
|
CrystallizedState *CrystallizedState `protobuf:"bytes,1,opt,name=crystallized_state,json=crystallizedState,proto3" json:"crystallized_state,omitempty"`
|
2018-08-05 23:23:31 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CrystallizedStateResponse) Reset() { *m = CrystallizedStateResponse{} }
|
|
|
|
func (m *CrystallizedStateResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*CrystallizedStateResponse) ProtoMessage() {}
|
|
|
|
func (*CrystallizedStateResponse) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{8}
|
2018-08-05 23:23:31 +00:00
|
|
|
}
|
|
|
|
func (m *CrystallizedStateResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_CrystallizedStateResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_CrystallizedStateResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *CrystallizedStateResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_CrystallizedStateResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_CrystallizedStateResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *CrystallizedStateResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_CrystallizedStateResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_CrystallizedStateResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *CrystallizedStateResponse) GetCrystallizedState() *CrystallizedState {
|
|
|
|
if m != nil {
|
|
|
|
return m.CrystallizedState
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-31 01:13:25 +00:00
|
|
|
type ActiveStateHashAnnounce struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ActiveStateHashAnnounce) Reset() { *m = ActiveStateHashAnnounce{} }
|
|
|
|
func (m *ActiveStateHashAnnounce) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ActiveStateHashAnnounce) ProtoMessage() {}
|
|
|
|
func (*ActiveStateHashAnnounce) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{9}
|
2018-07-31 01:13:25 +00:00
|
|
|
}
|
|
|
|
func (m *ActiveStateHashAnnounce) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ActiveStateHashAnnounce.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateHashAnnounce) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ActiveStateHashAnnounce.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *ActiveStateHashAnnounce) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ActiveStateHashAnnounce.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateHashAnnounce) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ActiveStateHashAnnounce.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateHashAnnounce) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ActiveStateHashAnnounce.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ActiveStateHashAnnounce proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ActiveStateHashAnnounce) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ActiveStateRequest struct {
|
|
|
|
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ActiveStateRequest) Reset() { *m = ActiveStateRequest{} }
|
|
|
|
func (m *ActiveStateRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ActiveStateRequest) ProtoMessage() {}
|
|
|
|
func (*ActiveStateRequest) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{10}
|
2018-07-31 01:13:25 +00:00
|
|
|
}
|
|
|
|
func (m *ActiveStateRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ActiveStateRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ActiveStateRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *ActiveStateRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ActiveStateRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ActiveStateRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ActiveStateRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ActiveStateRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ActiveStateRequest) GetHash() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ActiveStateResponse struct {
|
2018-10-06 15:30:15 +00:00
|
|
|
ActiveState *ActiveState `protobuf:"bytes,1,opt,name=active_state,json=activeState,proto3" json:"active_state,omitempty"`
|
2018-08-05 23:23:31 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-07-31 01:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ActiveStateResponse) Reset() { *m = ActiveStateResponse{} }
|
|
|
|
func (m *ActiveStateResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ActiveStateResponse) ProtoMessage() {}
|
|
|
|
func (*ActiveStateResponse) Descriptor() ([]byte, []int) {
|
2018-11-20 19:43:07 +00:00
|
|
|
return fileDescriptor_messages_571a4a4edc7daa63, []int{11}
|
2018-07-31 01:13:25 +00:00
|
|
|
}
|
|
|
|
func (m *ActiveStateResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ActiveStateResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ActiveStateResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *ActiveStateResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ActiveStateResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ActiveStateResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ActiveStateResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ActiveStateResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ActiveStateResponse proto.InternalMessageInfo
|
|
|
|
|
2018-08-05 23:23:31 +00:00
|
|
|
func (m *ActiveStateResponse) GetActiveState() *ActiveState {
|
|
|
|
if m != nil {
|
|
|
|
return m.ActiveState
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-31 18:54:45 +00:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*BeaconBlockHashAnnounce)(nil), "ethereum.beacon.p2p.v1.BeaconBlockHashAnnounce")
|
|
|
|
proto.RegisterType((*BeaconBlockRequest)(nil), "ethereum.beacon.p2p.v1.BeaconBlockRequest")
|
2018-08-07 12:12:10 +00:00
|
|
|
proto.RegisterType((*BeaconBlockRequestBySlotNumber)(nil), "ethereum.beacon.p2p.v1.BeaconBlockRequestBySlotNumber")
|
2018-07-31 18:54:45 +00:00
|
|
|
proto.RegisterType((*BeaconBlockResponse)(nil), "ethereum.beacon.p2p.v1.BeaconBlockResponse")
|
2018-11-19 01:59:11 +00:00
|
|
|
proto.RegisterType((*ChainHeadRequest)(nil), "ethereum.beacon.p2p.v1.ChainHeadRequest")
|
|
|
|
proto.RegisterType((*ChainHeadResponse)(nil), "ethereum.beacon.p2p.v1.ChainHeadResponse")
|
2018-07-31 18:54:45 +00:00
|
|
|
proto.RegisterType((*CrystallizedStateHashAnnounce)(nil), "ethereum.beacon.p2p.v1.CrystallizedStateHashAnnounce")
|
|
|
|
proto.RegisterType((*CrystallizedStateRequest)(nil), "ethereum.beacon.p2p.v1.CrystallizedStateRequest")
|
|
|
|
proto.RegisterType((*CrystallizedStateResponse)(nil), "ethereum.beacon.p2p.v1.CrystallizedStateResponse")
|
|
|
|
proto.RegisterType((*ActiveStateHashAnnounce)(nil), "ethereum.beacon.p2p.v1.ActiveStateHashAnnounce")
|
|
|
|
proto.RegisterType((*ActiveStateRequest)(nil), "ethereum.beacon.p2p.v1.ActiveStateRequest")
|
|
|
|
proto.RegisterType((*ActiveStateResponse)(nil), "ethereum.beacon.p2p.v1.ActiveStateResponse")
|
2018-08-29 16:32:54 +00:00
|
|
|
proto.RegisterEnum("ethereum.beacon.p2p.v1.Topic", Topic_name, Topic_value)
|
2018-08-14 00:58:37 +00:00
|
|
|
}
|
|
|
|
|
2018-11-20 19:43:07 +00:00
|
|
|
func init() {
|
|
|
|
proto.RegisterFile("proto/beacon/p2p/v1/messages.proto", fileDescriptor_messages_571a4a4edc7daa63)
|
|
|
|
}
|
|
|
|
|
|
|
|
var fileDescriptor_messages_571a4a4edc7daa63 = []byte{
|
|
|
|
// 557 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xdf, 0x6f, 0xd2, 0x40,
|
|
|
|
0x1c, 0x97, 0x8d, 0x6d, 0xfa, 0xed, 0x1e, 0xba, 0x43, 0x37, 0x36, 0xe3, 0x58, 0x3a, 0x13, 0xd1,
|
|
|
|
0x64, 0x25, 0x63, 0x4f, 0x3e, 0x5e, 0xbb, 0x9a, 0x92, 0x61, 0xab, 0x6d, 0x51, 0x67, 0x62, 0x9a,
|
|
|
|
0xa3, 0x5c, 0x80, 0x08, 0x6d, 0xe5, 0x0e, 0x12, 0xfc, 0x6f, 0xfc, 0x4b, 0x35, 0xbd, 0x95, 0xd1,
|
|
|
|
0x42, 0x99, 0xfa, 0x76, 0xf7, 0xf9, 0x75, 0xf7, 0xb9, 0x6f, 0x53, 0x50, 0xe2, 0x49, 0xc4, 0xa3,
|
|
|
|
0x46, 0x97, 0x92, 0x20, 0x0a, 0x1b, 0x71, 0x33, 0x6e, 0xcc, 0x2e, 0x1b, 0x63, 0xca, 0x18, 0xe9,
|
|
|
|
0x53, 0xa6, 0x0a, 0x12, 0x1d, 0x52, 0x3e, 0xa0, 0x13, 0x3a, 0x1d, 0xab, 0x77, 0x32, 0x35, 0x6e,
|
|
|
|
0xc6, 0xea, 0xec, 0xf2, 0xa4, 0x56, 0xe4, 0xe5, 0xf3, 0x78, 0x61, 0x54, 0x2e, 0xe0, 0x48, 0x13,
|
|
|
|
0xa4, 0x36, 0x8a, 0x82, 0xef, 0x26, 0x61, 0x03, 0x1c, 0x86, 0xd1, 0x34, 0x0c, 0x28, 0x42, 0x50,
|
|
|
|
0x1e, 0x10, 0x36, 0xa8, 0x96, 0xce, 0x4a, 0xf5, 0x7d, 0x47, 0xac, 0x95, 0x3a, 0xa0, 0x8c, 0xdc,
|
|
|
|
0xa1, 0x3f, 0xa6, 0x94, 0xf1, 0x42, 0x25, 0x86, 0xd3, 0x75, 0xa5, 0x36, 0x77, 0x47, 0x11, 0xb7,
|
|
|
|
0xa6, 0xe3, 0x2e, 0x9d, 0xa0, 0x1a, 0x48, 0x6c, 0x14, 0x71, 0x3f, 0x14, 0x5b, 0x61, 0x2e, 0x3b,
|
|
|
|
0xc0, 0xee, 0x05, 0xca, 0xaf, 0x12, 0x54, 0x72, 0x19, 0x2c, 0x8e, 0x42, 0x46, 0xd1, 0x5b, 0xd8,
|
|
|
|
0xe9, 0x26, 0x80, 0xb0, 0x48, 0xcd, 0x73, 0xb5, 0xb8, 0xbc, 0x9a, 0xf5, 0xde, 0x39, 0x90, 0x0d,
|
|
|
|
0x12, 0xe1, 0x9c, 0x32, 0x4e, 0xf8, 0x30, 0x0a, 0xab, 0x5b, 0x22, 0xe0, 0x62, 0x53, 0x00, 0xee,
|
|
|
|
0xf7, 0x27, 0xb4, 0x4f, 0x38, 0xed, 0xe1, 0xa5, 0xc9, 0xc9, 0x26, 0x28, 0x08, 0x64, 0x7d, 0x40,
|
|
|
|
0x86, 0xa1, 0x49, 0x49, 0x2f, 0x2d, 0xa9, 0xcc, 0xe0, 0x20, 0x83, 0xa5, 0x97, 0x2e, 0x78, 0xa3,
|
|
|
|
0x04, 0x4b, 0xea, 0x8a, 0x6b, 0x94, 0x1d, 0xb1, 0x5e, 0x96, 0xdb, 0xfe, 0xdf, 0x72, 0xca, 0x15,
|
|
|
|
0xbc, 0xd0, 0x27, 0x73, 0xc6, 0xc9, 0x68, 0x34, 0xfc, 0x49, 0x7b, 0x2e, 0x27, 0x9c, 0xfe, 0x75,
|
|
|
|
0xa2, 0x2a, 0x54, 0xd7, 0x4c, 0x0f, 0xcd, 0x75, 0x0a, 0xc7, 0x05, 0xfa, 0xb4, 0xe4, 0x17, 0x40,
|
|
|
|
0x41, 0x86, 0xf4, 0x93, 0x57, 0xa2, 0xe9, 0x98, 0x5e, 0x6f, 0x6a, 0xb2, 0x1e, 0x77, 0x10, 0xac,
|
|
|
|
0x42, 0xc9, 0x77, 0x8a, 0x03, 0x3e, 0x9c, 0xd1, 0x7f, 0x6b, 0x55, 0x07, 0x94, 0x91, 0x3f, 0xd4,
|
|
|
|
0xe7, 0x1b, 0x54, 0x72, 0xca, 0xb4, 0xc9, 0x3b, 0xd8, 0x27, 0x02, 0xce, 0x75, 0xd8, 0x38, 0x8d,
|
|
|
|
0x6c, 0x84, 0x44, 0x96, 0x9b, 0x37, 0xbf, 0xb7, 0x60, 0xc7, 0x8b, 0xe2, 0x61, 0x80, 0x24, 0xd8,
|
|
|
|
0xeb, 0x58, 0x37, 0x96, 0xfd, 0xd9, 0x92, 0x1f, 0xa1, 0x53, 0x38, 0xd1, 0x0c, 0xac, 0xdb, 0x96,
|
|
|
|
0xaf, 0xb5, 0x6d, 0xfd, 0xc6, 0x37, 0xb1, 0x6b, 0xfa, 0xd8, 0xb2, 0xec, 0x8e, 0xa5, 0x1b, 0x72,
|
|
|
|
0x09, 0x55, 0xe1, 0x69, 0x8e, 0x77, 0x8c, 0x8f, 0x1d, 0xc3, 0xf5, 0xe4, 0x2d, 0xf4, 0x0a, 0xce,
|
|
|
|
0x8b, 0x18, 0x5f, 0xbb, 0xf5, 0xdd, 0xb6, 0xed, 0xf9, 0x56, 0xe7, 0xbd, 0x66, 0x38, 0xf2, 0x36,
|
|
|
|
0x3a, 0x86, 0x67, 0x2b, 0x42, 0xf7, 0x83, 0x6d, 0xb9, 0x86, 0x5c, 0x46, 0x87, 0x80, 0x74, 0x13,
|
|
|
|
0xb7, 0x2c, 0xdf, 0x34, 0xf0, 0xf5, 0x7d, 0xf6, 0x0e, 0x3a, 0x82, 0x4a, 0x0e, 0x4f, 0x0d, 0xbb,
|
|
|
|
0xe8, 0x25, 0x9c, 0xe9, 0xce, 0xad, 0xeb, 0xe1, 0x76, 0xbb, 0xf5, 0xd5, 0xb8, 0xf6, 0x5d, 0x0f,
|
|
|
|
0x7b, 0xc6, 0xca, 0xa5, 0xf7, 0x92, 0x52, 0x05, 0xaa, 0x45, 0xfc, 0x63, 0x54, 0x83, 0xe7, 0x85,
|
|
|
|
0x7c, 0x7a, 0xcc, 0x93, 0x24, 0x00, 0xeb, 0x5e, 0xeb, 0x93, 0x51, 0x78, 0x00, 0x24, 0xaf, 0x92,
|
|
|
|
0xe3, 0x17, 0xd1, 0x52, 0x52, 0x76, 0x85, 0x49, 0x43, 0xf7, 0xbb, 0xbb, 0xe2, 0x47, 0x77, 0xf5,
|
|
|
|
0x27, 0x00, 0x00, 0xff, 0xff, 0x16, 0x90, 0x68, 0xb3, 0x47, 0x05, 0x00, 0x00,
|
2018-07-17 18:39:04 +00:00
|
|
|
}
|