From b48cea66022a9b7e5ad665c1ef2f523557333beb Mon Sep 17 00:00:00 2001 From: yacovm Date: Wed, 6 Sep 2017 13:39:29 +0300 Subject: [PATCH] [FAB-6043] migrate gossip stateInfo metadata to proto This commit adds a Properties sub-message to the StateInfo message and makes sure the gossip logic can handle peers with and without this field set. Change-Id: Ibe164db1e4dc4c5a1d861e62eb61da01d31778e6 Signed-off-by: yacovm --- gossip/common/metastate.go | 2 +- gossip/discovery/discovery.go | 1 + gossip/gossip/channel/channel.go | 8 +- gossip/gossip/channel/channel_test.go | 4 + gossip/gossip/gossip_impl.go | 9 +- gossip/gossip/gossip_test.go | 2 + gossip/state/state.go | 16 +- gossip/state/state_test.go | 102 +++++++++ protos/gossip/extensions.go | 10 + protos/gossip/message.pb.go | 294 ++++++++++++++------------ protos/gossip/message.proto | 6 + 11 files changed, 309 insertions(+), 145 deletions(-) diff --git a/gossip/common/metastate.go b/gossip/common/metastate.go index 1b5c73f6256..3eff0f06246 100644 --- a/gossip/common/metastate.go +++ b/gossip/common/metastate.go @@ -21,7 +21,7 @@ type NodeMetastate struct { LedgerHeight uint64 } -// NewNodeMetastate creates new meta data with given ledger height148.69 +// NewNodeMetastate creates new meta data with given ledger height func NewNodeMetastate(height uint64) *NodeMetastate { return &NodeMetastate{height} } diff --git a/gossip/discovery/discovery.go b/gossip/discovery/discovery.go index ff8f6d3488b..a9e2ee871c3 100644 --- a/gossip/discovery/discovery.go +++ b/gossip/discovery/discovery.go @@ -70,6 +70,7 @@ type NetworkMember struct { Metadata []byte PKIid common.PKIidType InternalEndpoint string + Properties *proto.Properties } // String returns a string representation of the NetworkMember diff --git a/gossip/gossip/channel/channel.go b/gossip/gossip/channel/channel.go index 18786ad3580..94d6061c75f 100644 --- a/gossip/gossip/channel/channel.go +++ b/gossip/gossip/channel/channel.go @@ -282,6 +282,7 @@ func (gc *gossipChannel) GetPeers() []discovery.NetworkMember { continue } member.Metadata = stateInf.GetStateInfo().Metadata + member.Properties = stateInf.GetStateInfo().Properties members = append(members, member) } return members @@ -751,13 +752,8 @@ func (gc *gossipChannel) UpdateStateInfo(msg *proto.SignedGossipMessage) { gc.Lock() defer gc.Unlock() - nodeMeta, err := common.FromBytes(msg.GetStateInfo().Metadata) - if err != nil { - gc.logger.Warningf("Can't extract ledger height from metadata %+v", errors.WithStack(err)) - return - } gc.stateInfoMsgStore.Add(msg) - gc.ledgerHeight = nodeMeta.LedgerHeight + gc.ledgerHeight = msg.GetStateInfo().Properties.LedgerHeight gc.stateInfoMsg = msg atomic.StoreInt32(&gc.shouldGossipStateInfo, int32(1)) } diff --git a/gossip/gossip/channel/channel_test.go b/gossip/gossip/channel/channel_test.go index b7dcd37f921..8a47cea78e9 100644 --- a/gossip/gossip/channel/channel_test.go +++ b/gossip/gossip/channel/channel_test.go @@ -412,6 +412,7 @@ func TestChannelPeriodicalPublishStateInfo(t *testing.T) { nodeMeta, err := common.FromBytes(msg.GetStateInfo().Metadata) assert.NoError(t, err, "ReceivedMetadata is invalid") assert.Equal(t, ledgerHeight, int(nodeMeta.LedgerHeight), "Received different ledger height than expected") + assert.Equal(t, ledgerHeight, int(msg.GetStateInfo().Properties.LedgerHeight)) } func TestChannelMsgStoreEviction(t *testing.T) { @@ -1751,6 +1752,9 @@ func createStateInfoMsg(ledgerHeight int, pkiID common.PKIidType, channel common Timestamp: &proto.PeerTime{IncNum: uint64(time.Now().UnixNano()), SeqNum: 1}, Metadata: metaBytes, PkiId: []byte(pkiID), + Properties: &proto.Properties{ + LedgerHeight: uint64(ledgerHeight), + }, }, }, }).NoopSign() diff --git a/gossip/gossip/gossip_impl.go b/gossip/gossip/gossip_impl.go index 5f67efef2af..d6648e1793e 100644 --- a/gossip/gossip/gossip_impl.go +++ b/gossip/gossip/gossip_impl.go @@ -1089,6 +1089,10 @@ func (g *gossipServiceImpl) connect2BootstrapPeers() { } func (g *gossipServiceImpl) createStateInfoMsg(metadata []byte, chainID common.ChainID) (*proto.SignedGossipMessage, error) { + metaState, err := common.FromBytes(metadata) + if err != nil { + return nil, err + } pkiID := g.comm.GetPKIid() stateInfMsg := &proto.StateInfo{ Channel_MAC: channel.GenerateMAC(pkiID, chainID), @@ -1098,6 +1102,9 @@ func (g *gossipServiceImpl) createStateInfoMsg(metadata []byte, chainID common.C IncNum: uint64(g.incTime.UnixNano()), SeqNum: uint64(time.Now().UnixNano()), }, + Properties: &proto.Properties{ + LedgerHeight: metaState.LedgerHeight, + }, } m := &proto.GossipMessage{ Nonce: 0, @@ -1112,7 +1119,7 @@ func (g *gossipServiceImpl) createStateInfoMsg(metadata []byte, chainID common.C signer := func(msg []byte) ([]byte, error) { return g.mcs.Sign(msg) } - _, err := sMsg.Sign(signer) + _, err = sMsg.Sign(signer) return sMsg, errors.WithStack(err) } diff --git a/gossip/gossip/gossip_test.go b/gossip/gossip/gossip_test.go index a837964d765..1a18137d131 100644 --- a/gossip/gossip/gossip_test.go +++ b/gossip/gossip/gossip_test.go @@ -897,8 +897,10 @@ func TestDataLeakage(t *testing.T) { assert.Len(t, peers[instanceIndex].PeersOfChannel(channel), 2) if i == 0 { assert.Equal(t, channelAmetadata, peers[instanceIndex].PeersOfChannel(channel)[0].Metadata) + assert.Equal(t, uint64(1), peers[instanceIndex].PeersOfChannel(channel)[0].Properties.LedgerHeight) } else { assert.Equal(t, channelBmetadata, peers[instanceIndex].PeersOfChannel(channel)[0].Metadata) + assert.Equal(t, uint64(2), peers[instanceIndex].PeersOfChannel(channel)[0].Properties.LedgerHeight) } } } diff --git a/gossip/state/state.go b/gossip/state/state.go index fb138ae58f6..8014c0300a3 100644 --- a/gossip/state/state.go +++ b/gossip/state/state.go @@ -547,10 +547,15 @@ func (s *GossipStateProviderImpl) antiEntropy() { func (s *GossipStateProviderImpl) maxAvailableLedgerHeight() uint64 { max := uint64(0) for _, p := range s.mediator.PeersOfChannel(common2.ChainID(s.chainID)) { - if nodeMetastate, err := common2.FromBytes(p.Metadata); err == nil { - if max < nodeMetastate.LedgerHeight { - max = nodeMetastate.LedgerHeight - } + var peerHeight uint64 + if p.Properties != nil { + peerHeight = p.Properties.LedgerHeight + } else if nodeMetastate, err := common2.FromBytes(p.Metadata); err == nil { + peerHeight = nodeMetastate.LedgerHeight + } + + if max < peerHeight { + max = peerHeight } } return max @@ -660,6 +665,9 @@ func (s *GossipStateProviderImpl) filterPeers(predicate func(peer discovery.Netw // by provided input parameter func (s *GossipStateProviderImpl) hasRequiredHeight(height uint64) func(peer discovery.NetworkMember) bool { return func(peer discovery.NetworkMember) bool { + if peer.Properties != nil { + return peer.Properties.LedgerHeight >= height + } if nodeMetadata, err := common2.FromBytes(peer.Metadata); err != nil { logger.Errorf("Unable to de-serialize node meta state, error = %+v", errors.WithStack(err)) } else if nodeMetadata.LedgerHeight >= height { diff --git a/gossip/state/state_test.go b/gossip/state/state_test.go index 10a18d7ffb4..7861f60f09e 100644 --- a/gossip/state/state_test.go +++ b/gossip/state/state_test.go @@ -13,6 +13,7 @@ import ( "math/rand" "strconv" "sync" + "sync/atomic" "testing" "time" @@ -553,6 +554,107 @@ func TestGossipReception(t *testing.T) { } } +func TestMetadataCompatibility(t *testing.T) { + // Scenario: For each test, spawn a peer and supply it + // with a specific mock of PeersOfChannel from peers that + // either set both metadata properly, or only the properties, or none, or both. + // Ensure the logic handles all of the 4 possible cases as needed + + // Returns whether the given networkMember was selected or not + wasNetworkMemberSelected := func(t *testing.T, networkMember discovery.NetworkMember, wg *sync.WaitGroup) bool { + var wasGivenNetworkMemberSelected int32 + finChan := make(chan struct{}) + g := &mocks.GossipMock{} + g.On("Send", mock.Anything, mock.Anything).Run(func(arguments mock.Arguments) { + defer wg.Done() + msg := arguments.Get(0).(*proto.GossipMessage) + assert.NotNil(t, msg.GetStateRequest()) + peer := arguments.Get(1).([]*comm.RemotePeer)[0] + if bytes.Equal(networkMember.PKIid, peer.PKIID) { + atomic.StoreInt32(&wasGivenNetworkMemberSelected, 1) + } + finChan <- struct{}{} + }) + g.On("Accept", mock.Anything, false).Return(make(<-chan *proto.GossipMessage), nil) + g.On("Accept", mock.Anything, true).Return(nil, make(<-chan proto.ReceivedMessage)) + metaState := common.NewNodeMetastate(5) + b, _ := metaState.Bytes() + defaultPeer := discovery.NetworkMember{ + InternalEndpoint: "b", + PKIid: common.PKIidType("b"), + Metadata: b, + Properties: &proto.Properties{ + LedgerHeight: 5, + }, + } + g.On("PeersOfChannel", mock.Anything).Return([]discovery.NetworkMember{ + defaultPeer, + networkMember, + }) + mc := &mockCommitter{} + mc.On("LedgerHeight", mock.Anything).Return(uint64(1), nil) + p := newPeerNodeWithGossip(newGossipConfig(0), mc, noopPeerIdentityAcceptor, g) + defer p.shutdown() + select { + case <-time.After(time.Second * 20): + t.Fatal("Didn't send a request within a timely manner") + case <-finChan: + } + return atomic.LoadInt32(&wasGivenNetworkMemberSelected) == 1 + } + + peerWithoutMetadata := discovery.NetworkMember{ + PKIid: common.PKIidType("peerWithoutMetadata"), + Properties: &proto.Properties{ + LedgerHeight: 10, + }, + InternalEndpoint: "peerWithoutMetadata", + } + + ms := common.NodeMetastate{ + LedgerHeight: 10, + } + b, _ := ms.Bytes() + peerWithoutProperties := discovery.NetworkMember{ + PKIid: common.PKIidType("peerWithoutProperties"), + InternalEndpoint: "peerWithoutProperties", + Metadata: b, + } + + peerWithoutEverything := discovery.NetworkMember{ + PKIid: common.PKIidType("peerWithoutProperties"), + InternalEndpoint: "peerWithoutProperties", + } + + peerWithEverything := discovery.NetworkMember{ + PKIid: common.PKIidType("peerWitEverything"), + InternalEndpoint: "peerWitEverything", + Metadata: b, + Properties: &proto.Properties{ + LedgerHeight: 10, + }, + } + + tests := []struct { + shouldGivenBeSelected bool + member discovery.NetworkMember + }{ + {member: peerWithoutMetadata, shouldGivenBeSelected: true}, + {member: peerWithoutProperties, shouldGivenBeSelected: true}, + {member: peerWithoutEverything, shouldGivenBeSelected: false}, + {member: peerWithEverything, shouldGivenBeSelected: true}, + } + + var wg sync.WaitGroup + wg.Add(len(tests)) + for _, tst := range tests { + go func(shouldGivenBeSelected bool, member discovery.NetworkMember) { + assert.Equal(t, shouldGivenBeSelected, wasNetworkMemberSelected(t, member, &wg)) + }(tst.shouldGivenBeSelected, tst.member) + } + wg.Wait() +} + func TestAccessControl(t *testing.T) { viper.Set("peer.fileSystemPath", "/tmp/tests/ledger/node") ledgermgmt.InitializeTestEnv() diff --git a/protos/gossip/extensions.go b/protos/gossip/extensions.go index 3ab54d68371..4acaae31196 100644 --- a/protos/gossip/extensions.go +++ b/protos/gossip/extensions.go @@ -580,6 +580,16 @@ func digestsToHex(digests []string) []string { return a } +// LedgerHeight returns the ledger height that is specified +// in the StateInfo message +func (msg *StateInfo) LedgerHeight() (uint64, error) { + if msg.Properties != nil { + return msg.Properties.LedgerHeight, nil + } + metaState, err := common.FromBytes(msg.Metadata) + return metaState.LedgerHeight, err +} + // Abs returns abs(a-b) func abs(a, b uint64) uint64 { if a > b { diff --git a/protos/gossip/message.pb.go b/protos/gossip/message.pb.go index 254ddc89227..e23d3e9ea93 100644 --- a/protos/gossip/message.pb.go +++ b/protos/gossip/message.pb.go @@ -13,6 +13,7 @@ It has these top-level messages: Secret GossipMessage StateInfo + Properties StateInfoSnapshot StateInfoPullRequest ConnEstablish @@ -993,7 +994,8 @@ type StateInfo struct { // channel_MAC is an authentication code that proves // that the peer that sent this message knows // the name of the channel. - Channel_MAC []byte `protobuf:"bytes,4,opt,name=channel_MAC,json=channelMAC,proto3" json:"channel_MAC,omitempty"` + Channel_MAC []byte `protobuf:"bytes,4,opt,name=channel_MAC,json=channelMAC,proto3" json:"channel_MAC,omitempty"` + Properties *Properties `protobuf:"bytes,5,opt,name=properties" json:"properties,omitempty"` } func (m *StateInfo) Reset() { *m = StateInfo{} } @@ -1029,6 +1031,29 @@ func (m *StateInfo) GetChannel_MAC() []byte { return nil } +func (m *StateInfo) GetProperties() *Properties { + if m != nil { + return m.Properties + } + return nil +} + +type Properties struct { + LedgerHeight uint64 `protobuf:"varint,1,opt,name=ledger_height,json=ledgerHeight" json:"ledger_height,omitempty"` +} + +func (m *Properties) Reset() { *m = Properties{} } +func (m *Properties) String() string { return proto.CompactTextString(m) } +func (*Properties) ProtoMessage() {} +func (*Properties) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } + +func (m *Properties) GetLedgerHeight() uint64 { + if m != nil { + return m.LedgerHeight + } + return 0 +} + // StateInfoSnapshot is an aggregation of StateInfo messages type StateInfoSnapshot struct { Elements []*Envelope `protobuf:"bytes,1,rep,name=elements" json:"elements,omitempty"` @@ -1037,7 +1062,7 @@ type StateInfoSnapshot struct { func (m *StateInfoSnapshot) Reset() { *m = StateInfoSnapshot{} } func (m *StateInfoSnapshot) String() string { return proto.CompactTextString(m) } func (*StateInfoSnapshot) ProtoMessage() {} -func (*StateInfoSnapshot) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +func (*StateInfoSnapshot) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } func (m *StateInfoSnapshot) GetElements() []*Envelope { if m != nil { @@ -1058,7 +1083,7 @@ type StateInfoPullRequest struct { func (m *StateInfoPullRequest) Reset() { *m = StateInfoPullRequest{} } func (m *StateInfoPullRequest) String() string { return proto.CompactTextString(m) } func (*StateInfoPullRequest) ProtoMessage() {} -func (*StateInfoPullRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +func (*StateInfoPullRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } func (m *StateInfoPullRequest) GetChannel_MAC() []byte { if m != nil { @@ -1079,7 +1104,7 @@ type ConnEstablish struct { func (m *ConnEstablish) Reset() { *m = ConnEstablish{} } func (m *ConnEstablish) String() string { return proto.CompactTextString(m) } func (*ConnEstablish) ProtoMessage() {} -func (*ConnEstablish) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +func (*ConnEstablish) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } func (m *ConnEstablish) GetPkiId() []byte { if m != nil { @@ -1114,7 +1139,7 @@ type PeerIdentity struct { func (m *PeerIdentity) Reset() { *m = PeerIdentity{} } func (m *PeerIdentity) String() string { return proto.CompactTextString(m) } func (*PeerIdentity) ProtoMessage() {} -func (*PeerIdentity) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +func (*PeerIdentity) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } func (m *PeerIdentity) GetPkiId() []byte { if m != nil { @@ -1148,7 +1173,7 @@ type DataRequest struct { func (m *DataRequest) Reset() { *m = DataRequest{} } func (m *DataRequest) String() string { return proto.CompactTextString(m) } func (*DataRequest) ProtoMessage() {} -func (*DataRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } +func (*DataRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } func (m *DataRequest) GetNonce() uint64 { if m != nil { @@ -1182,7 +1207,7 @@ type GossipHello struct { func (m *GossipHello) Reset() { *m = GossipHello{} } func (m *GossipHello) String() string { return proto.CompactTextString(m) } func (*GossipHello) ProtoMessage() {} -func (*GossipHello) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } +func (*GossipHello) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } func (m *GossipHello) GetNonce() uint64 { if m != nil { @@ -1216,7 +1241,7 @@ type DataUpdate struct { func (m *DataUpdate) Reset() { *m = DataUpdate{} } func (m *DataUpdate) String() string { return proto.CompactTextString(m) } func (*DataUpdate) ProtoMessage() {} -func (*DataUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } +func (*DataUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } func (m *DataUpdate) GetNonce() uint64 { if m != nil { @@ -1250,7 +1275,7 @@ type DataDigest struct { func (m *DataDigest) Reset() { *m = DataDigest{} } func (m *DataDigest) String() string { return proto.CompactTextString(m) } func (*DataDigest) ProtoMessage() {} -func (*DataDigest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } +func (*DataDigest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } func (m *DataDigest) GetNonce() uint64 { if m != nil { @@ -1281,7 +1306,7 @@ type DataMessage struct { func (m *DataMessage) Reset() { *m = DataMessage{} } func (m *DataMessage) String() string { return proto.CompactTextString(m) } func (*DataMessage) ProtoMessage() {} -func (*DataMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } +func (*DataMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} } func (m *DataMessage) GetPayload() *Payload { if m != nil { @@ -1300,7 +1325,7 @@ type Payload struct { func (m *Payload) Reset() { *m = Payload{} } func (m *Payload) String() string { return proto.CompactTextString(m) } func (*Payload) ProtoMessage() {} -func (*Payload) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} } +func (*Payload) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} } func (m *Payload) GetSeqNum() uint64 { if m != nil { @@ -1334,7 +1359,7 @@ type PrivatePayload struct { func (m *PrivatePayload) Reset() { *m = PrivatePayload{} } func (m *PrivatePayload) String() string { return proto.CompactTextString(m) } func (*PrivatePayload) ProtoMessage() {} -func (*PrivatePayload) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} } +func (*PrivatePayload) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} } func (m *PrivatePayload) GetCollectionName() string { if m != nil { @@ -1361,7 +1386,7 @@ type AliveMessage struct { func (m *AliveMessage) Reset() { *m = AliveMessage{} } func (m *AliveMessage) String() string { return proto.CompactTextString(m) } func (*AliveMessage) ProtoMessage() {} -func (*AliveMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} } +func (*AliveMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} } func (m *AliveMessage) GetMembership() *Member { if m != nil { @@ -1395,7 +1420,7 @@ type LeadershipMessage struct { func (m *LeadershipMessage) Reset() { *m = LeadershipMessage{} } func (m *LeadershipMessage) String() string { return proto.CompactTextString(m) } func (*LeadershipMessage) ProtoMessage() {} -func (*LeadershipMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} } +func (*LeadershipMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} } func (m *LeadershipMessage) GetPkiId() []byte { if m != nil { @@ -1427,7 +1452,7 @@ type PeerTime struct { func (m *PeerTime) Reset() { *m = PeerTime{} } func (m *PeerTime) String() string { return proto.CompactTextString(m) } func (*PeerTime) ProtoMessage() {} -func (*PeerTime) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} } +func (*PeerTime) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} } func (m *PeerTime) GetIncNum() uint64 { if m != nil { @@ -1453,7 +1478,7 @@ type MembershipRequest struct { func (m *MembershipRequest) Reset() { *m = MembershipRequest{} } func (m *MembershipRequest) String() string { return proto.CompactTextString(m) } func (*MembershipRequest) ProtoMessage() {} -func (*MembershipRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} } +func (*MembershipRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} } func (m *MembershipRequest) GetSelfInformation() *Envelope { if m != nil { @@ -1478,7 +1503,7 @@ type MembershipResponse struct { func (m *MembershipResponse) Reset() { *m = MembershipResponse{} } func (m *MembershipResponse) String() string { return proto.CompactTextString(m) } func (*MembershipResponse) ProtoMessage() {} -func (*MembershipResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} } +func (*MembershipResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } func (m *MembershipResponse) GetAlive() []*Envelope { if m != nil { @@ -1505,7 +1530,7 @@ type Member struct { func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} -func (*Member) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } +func (*Member) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } func (m *Member) GetEndpoint() string { if m != nil { @@ -1535,7 +1560,7 @@ type Empty struct { func (m *Empty) Reset() { *m = Empty{} } func (m *Empty) String() string { return proto.CompactTextString(m) } func (*Empty) ProtoMessage() {} -func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } +func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} } // RemoteStateRequest is used to ask a set of blocks // from a remote peer @@ -1547,7 +1572,7 @@ type RemoteStateRequest struct { func (m *RemoteStateRequest) Reset() { *m = RemoteStateRequest{} } func (m *RemoteStateRequest) String() string { return proto.CompactTextString(m) } func (*RemoteStateRequest) ProtoMessage() {} -func (*RemoteStateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} } +func (*RemoteStateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } func (m *RemoteStateRequest) GetStartSeqNum() uint64 { if m != nil { @@ -1572,7 +1597,7 @@ type RemoteStateResponse struct { func (m *RemoteStateResponse) Reset() { *m = RemoteStateResponse{} } func (m *RemoteStateResponse) String() string { return proto.CompactTextString(m) } func (*RemoteStateResponse) ProtoMessage() {} -func (*RemoteStateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } +func (*RemoteStateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } func (m *RemoteStateResponse) GetPayloads() []*Payload { if m != nil { @@ -1590,7 +1615,7 @@ type RemotePvtDataRequest struct { func (m *RemotePvtDataRequest) Reset() { *m = RemotePvtDataRequest{} } func (m *RemotePvtDataRequest) String() string { return proto.CompactTextString(m) } func (*RemotePvtDataRequest) ProtoMessage() {} -func (*RemotePvtDataRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } +func (*RemotePvtDataRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } func (m *RemotePvtDataRequest) GetDigests() []*PvtDataDigest { if m != nil { @@ -1611,7 +1636,7 @@ type PvtDataDigest struct { func (m *PvtDataDigest) Reset() { *m = PvtDataDigest{} } func (m *PvtDataDigest) String() string { return proto.CompactTextString(m) } func (*PvtDataDigest) ProtoMessage() {} -func (*PvtDataDigest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } +func (*PvtDataDigest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} } func (m *PvtDataDigest) GetTxId() string { if m != nil { @@ -1657,7 +1682,7 @@ type RemotePvtDataResponse struct { func (m *RemotePvtDataResponse) Reset() { *m = RemotePvtDataResponse{} } func (m *RemotePvtDataResponse) String() string { return proto.CompactTextString(m) } func (*RemotePvtDataResponse) ProtoMessage() {} -func (*RemotePvtDataResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} } +func (*RemotePvtDataResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } func (m *RemotePvtDataResponse) GetElements() []*PvtDataElement { if m != nil { @@ -1675,7 +1700,7 @@ type PvtDataElement struct { func (m *PvtDataElement) Reset() { *m = PvtDataElement{} } func (m *PvtDataElement) String() string { return proto.CompactTextString(m) } func (*PvtDataElement) ProtoMessage() {} -func (*PvtDataElement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } +func (*PvtDataElement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } func (m *PvtDataElement) GetDigest() *PvtDataDigest { if m != nil { @@ -1703,7 +1728,7 @@ type PvtDataPayload struct { func (m *PvtDataPayload) Reset() { *m = PvtDataPayload{} } func (m *PvtDataPayload) String() string { return proto.CompactTextString(m) } func (*PvtDataPayload) ProtoMessage() {} -func (*PvtDataPayload) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } +func (*PvtDataPayload) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } func (m *PvtDataPayload) GetTxSeqInBlock() uint64 { if m != nil { @@ -1726,7 +1751,7 @@ type Acknowledgement struct { func (m *Acknowledgement) Reset() { *m = Acknowledgement{} } func (m *Acknowledgement) String() string { return proto.CompactTextString(m) } func (*Acknowledgement) ProtoMessage() {} -func (*Acknowledgement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } +func (*Acknowledgement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } func (m *Acknowledgement) GetError() string { if m != nil { @@ -1741,6 +1766,7 @@ func init() { proto.RegisterType((*Secret)(nil), "gossip.Secret") proto.RegisterType((*GossipMessage)(nil), "gossip.GossipMessage") proto.RegisterType((*StateInfo)(nil), "gossip.StateInfo") + proto.RegisterType((*Properties)(nil), "gossip.Properties") proto.RegisterType((*StateInfoSnapshot)(nil), "gossip.StateInfoSnapshot") proto.RegisterType((*StateInfoPullRequest)(nil), "gossip.StateInfoPullRequest") proto.RegisterType((*ConnEstablish)(nil), "gossip.ConnEstablish") @@ -1916,110 +1942,112 @@ var _Gossip_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("gossip/message.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 1666 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x58, 0xdd, 0x4f, 0xe4, 0xc8, - 0x11, 0x1f, 0xc3, 0x7c, 0xb9, 0xe6, 0x83, 0xa1, 0x61, 0x77, 0x1d, 0xee, 0x72, 0x21, 0x56, 0xf6, - 0x6e, 0x13, 0xee, 0xe0, 0xc4, 0x25, 0xca, 0x49, 0x97, 0xe4, 0x04, 0xcc, 0x84, 0x19, 0xdd, 0x0e, - 0x4b, 0x0c, 0xab, 0x84, 0x28, 0x92, 0xd5, 0xd8, 0x8d, 0xc7, 0xc1, 0x6e, 0x1b, 0x77, 0x43, 0xe0, - 0x31, 0xca, 0x5b, 0x5e, 0xf2, 0x37, 0xe4, 0x9f, 0xc9, 0xdf, 0x15, 0x75, 0xb7, 0x3f, 0xf1, 0xcc, - 0x49, 0x7b, 0xd2, 0xbd, 0x4d, 0x7d, 0xfc, 0xaa, 0xba, 0xaa, 0xab, 0xaa, 0xcb, 0x03, 0xdb, 0x5e, - 0xc4, 0x98, 0x1f, 0x1f, 0x84, 0x84, 0x31, 0xec, 0x91, 0xfd, 0x38, 0x89, 0x78, 0x84, 0xda, 0x8a, - 0x6b, 0xfe, 0x4b, 0x83, 0xee, 0x84, 0x3e, 0x90, 0x20, 0x8a, 0x09, 0x32, 0xa0, 0x13, 0xe3, 0xa7, - 0x20, 0xc2, 0xae, 0xa1, 0xed, 0x6a, 0x6f, 0xfa, 0x56, 0x46, 0xa2, 0x8f, 0x41, 0x67, 0xbe, 0x47, - 0x31, 0xbf, 0x4f, 0x88, 0xb1, 0x26, 0x65, 0x05, 0x03, 0x7d, 0x0b, 0x1b, 0x8c, 0x38, 0x09, 0xe1, - 0x36, 0x49, 0x4d, 0x19, 0xeb, 0xbb, 0xda, 0x9b, 0xde, 0xe1, 0xcb, 0x7d, 0xe5, 0x66, 0xff, 0x42, - 0x8a, 0x33, 0x47, 0xd6, 0x90, 0x55, 0x68, 0x73, 0x0a, 0xc3, 0xaa, 0xc6, 0x0f, 0x3d, 0x8a, 0x79, - 0x04, 0x6d, 0x65, 0x09, 0x7d, 0x0e, 0x23, 0x9f, 0x72, 0x92, 0x50, 0x1c, 0x4c, 0xa8, 0x1b, 0x47, - 0x3e, 0xe5, 0xd2, 0x94, 0x3e, 0x6d, 0x58, 0x35, 0xc9, 0xb1, 0x0e, 0x1d, 0x27, 0xa2, 0x9c, 0x50, - 0x6e, 0xfe, 0x0f, 0x60, 0x70, 0x2a, 0x8f, 0x3d, 0x57, 0x29, 0x43, 0xdb, 0xd0, 0xa2, 0x11, 0x75, - 0x88, 0xc4, 0x37, 0x2d, 0x45, 0x88, 0x23, 0x3a, 0x0b, 0x4c, 0x29, 0x09, 0xd2, 0x63, 0x64, 0x24, - 0xda, 0x83, 0x75, 0x8e, 0x3d, 0x99, 0x83, 0xe1, 0xe1, 0x4f, 0xb2, 0x1c, 0x54, 0x6c, 0xee, 0x5f, - 0x62, 0xcf, 0x12, 0x5a, 0xe8, 0x2b, 0xd0, 0x71, 0xe0, 0x3f, 0x10, 0x3b, 0x64, 0x9e, 0xd1, 0x92, - 0x69, 0xdb, 0xce, 0x20, 0x47, 0x42, 0x90, 0x22, 0xa6, 0x0d, 0xab, 0x2b, 0x15, 0xe7, 0xcc, 0x43, - 0xbf, 0x86, 0x4e, 0x48, 0x42, 0x3b, 0x21, 0x77, 0x46, 0x5b, 0x42, 0x72, 0x2f, 0x73, 0x12, 0x5e, - 0x93, 0x84, 0x2d, 0xfc, 0xd8, 0x22, 0x77, 0xf7, 0x84, 0xf1, 0x69, 0xc3, 0x6a, 0x87, 0x24, 0xb4, - 0xc8, 0x1d, 0xfa, 0x4d, 0x86, 0x62, 0x46, 0x47, 0xa2, 0x76, 0x96, 0xa1, 0x58, 0x1c, 0x51, 0x46, - 0x72, 0x18, 0x43, 0x5f, 0x42, 0xd7, 0xc5, 0x1c, 0xcb, 0x03, 0x76, 0x25, 0x6e, 0x2b, 0xc3, 0x8d, - 0x31, 0xc7, 0xc5, 0xf9, 0x3a, 0x42, 0x4d, 0x1c, 0x6f, 0x0f, 0x5a, 0x0b, 0x12, 0x04, 0x91, 0xa1, - 0x57, 0xd5, 0x55, 0x0a, 0xa6, 0x42, 0x34, 0x6d, 0x58, 0x4a, 0x07, 0x1d, 0xa4, 0xe6, 0x5d, 0xdf, - 0x33, 0x40, 0xea, 0xa3, 0xb2, 0xf9, 0xb1, 0xef, 0xa9, 0x28, 0xa4, 0xf5, 0xb1, 0xef, 0xe5, 0xe7, - 0x11, 0xd1, 0xf7, 0xea, 0xe7, 0x29, 0xe2, 0x96, 0x08, 0x15, 0x78, 0x4f, 0x22, 0xee, 0x63, 0x17, - 0x73, 0x62, 0xf4, 0xeb, 0x5e, 0xde, 0x4b, 0xc9, 0xb4, 0x61, 0x81, 0x9b, 0x53, 0xe8, 0x35, 0xb4, - 0x48, 0x18, 0xf3, 0x27, 0x63, 0x20, 0x01, 0x83, 0x0c, 0x30, 0x11, 0x4c, 0x11, 0x80, 0x94, 0xa2, - 0x3d, 0x68, 0x3a, 0x11, 0xa5, 0xc6, 0x50, 0x6a, 0xbd, 0xc8, 0xb4, 0x4e, 0x22, 0x4a, 0x27, 0x8c, - 0xe3, 0xeb, 0xc0, 0x67, 0x8b, 0x69, 0xc3, 0x92, 0x4a, 0xe8, 0x10, 0x80, 0x71, 0xcc, 0x89, 0xed, - 0xd3, 0x9b, 0xc8, 0xd8, 0x90, 0x90, 0xcd, 0xbc, 0x4d, 0x84, 0x64, 0x46, 0x6f, 0x44, 0x76, 0x74, - 0x96, 0x11, 0xe8, 0x18, 0x86, 0x0a, 0xc3, 0x28, 0x8e, 0xd9, 0x22, 0xe2, 0xc6, 0xa8, 0x7a, 0xe9, - 0x39, 0xee, 0x22, 0x55, 0x98, 0x36, 0xac, 0x81, 0x84, 0x64, 0x0c, 0x34, 0x87, 0xad, 0xc2, 0xaf, - 0x1d, 0xdf, 0x07, 0x81, 0xcc, 0xdf, 0xa6, 0x34, 0xf4, 0x71, 0xcd, 0xd0, 0xf9, 0x7d, 0x10, 0x14, - 0x89, 0x1c, 0xb1, 0x67, 0x7c, 0x74, 0x04, 0xca, 0xbe, 0x30, 0x22, 0x94, 0x0c, 0x54, 0x2d, 0x28, - 0x8b, 0x84, 0x11, 0x27, 0xd2, 0x5c, 0x61, 0xa6, 0xcf, 0x4a, 0x34, 0x1a, 0x67, 0x51, 0x25, 0x69, - 0xc9, 0x19, 0x5b, 0xd2, 0xc6, 0x47, 0x4b, 0x6d, 0xe4, 0x55, 0x39, 0x60, 0x65, 0x86, 0xc8, 0x4d, - 0x40, 0xb0, 0xab, 0x8a, 0x57, 0x96, 0xe8, 0x76, 0x35, 0x37, 0x6f, 0x73, 0x69, 0x51, 0xa8, 0x83, - 0x02, 0x22, 0xca, 0xf5, 0x1b, 0x18, 0xc4, 0x84, 0x24, 0xb6, 0xef, 0x12, 0xca, 0x7d, 0xfe, 0x64, - 0xbc, 0xa8, 0xb6, 0xe1, 0x39, 0x21, 0xc9, 0x2c, 0x95, 0x89, 0x30, 0xe2, 0x12, 0x2d, 0x9a, 0x1d, - 0x3b, 0xb7, 0xc6, 0x4b, 0x09, 0x79, 0x95, 0x77, 0xae, 0x73, 0x4b, 0xa3, 0x7f, 0x04, 0xc4, 0xf5, - 0x48, 0x48, 0xa8, 0x08, 0x5e, 0x68, 0xa1, 0x3f, 0x00, 0xc4, 0x89, 0xff, 0xa0, 0xb2, 0x60, 0xbc, - 0xaa, 0x26, 0x5f, 0xc5, 0x7b, 0xfe, 0xc0, 0xab, 0x55, 0x5c, 0x42, 0xa0, 0x6f, 0x4b, 0x78, 0x66, - 0x18, 0x12, 0xff, 0xd3, 0x15, 0xf8, 0x3c, 0x63, 0x25, 0x88, 0x69, 0xc3, 0xfa, 0x25, 0xf6, 0xd0, - 0x00, 0xf4, 0xf7, 0x67, 0xe3, 0xc9, 0x1f, 0x67, 0x67, 0x93, 0xf1, 0xa8, 0x81, 0x74, 0x68, 0x4d, - 0xe6, 0xe7, 0x97, 0x57, 0x23, 0x0d, 0xf5, 0xa1, 0xfb, 0xce, 0x3a, 0xb5, 0xdf, 0x9d, 0xbd, 0xbd, - 0x1a, 0xad, 0x09, 0xbd, 0x93, 0xe9, 0xd1, 0x99, 0x22, 0xd7, 0xd1, 0x08, 0xfa, 0x92, 0x3c, 0x3a, - 0x1b, 0xdb, 0xef, 0xac, 0xd3, 0x51, 0x13, 0x6d, 0x40, 0x4f, 0x29, 0x58, 0x92, 0xd1, 0x2a, 0x0f, - 0xd2, 0xff, 0x68, 0xa0, 0xe7, 0x05, 0x85, 0x76, 0xa0, 0x1b, 0x12, 0x8e, 0x45, 0x7b, 0xa5, 0x23, - 0x3d, 0xa7, 0xd1, 0x3e, 0xe8, 0xdc, 0x0f, 0x09, 0xe3, 0x38, 0x8c, 0xe5, 0x30, 0xed, 0x1d, 0x8e, - 0xca, 0xc9, 0xbf, 0xf4, 0x43, 0x62, 0x15, 0x2a, 0xe8, 0x05, 0xb4, 0xe3, 0x5b, 0xdf, 0xf6, 0x5d, - 0x39, 0x63, 0xfb, 0x56, 0x2b, 0xbe, 0xf5, 0x67, 0x2e, 0xfa, 0x19, 0xf4, 0xd2, 0x11, 0x6c, 0xcf, - 0x8f, 0x4e, 0x8c, 0xa6, 0x94, 0x41, 0xca, 0x9a, 0x1f, 0x9d, 0x98, 0x47, 0xb0, 0x59, 0x6b, 0x15, - 0xf4, 0x39, 0x74, 0x49, 0x20, 0x6f, 0x89, 0x19, 0xda, 0xee, 0x7a, 0xd9, 0x77, 0xfe, 0x60, 0xe5, - 0x1a, 0xe6, 0x6f, 0x61, 0x7b, 0x59, 0x93, 0x3c, 0xf7, 0xad, 0xd5, 0x7c, 0xdf, 0xc0, 0xa0, 0x32, - 0x11, 0x4a, 0x41, 0x68, 0xe5, 0x20, 0x76, 0xa0, 0x9b, 0xd7, 0xa1, 0x7a, 0x57, 0x72, 0x1a, 0x99, - 0x30, 0xe0, 0x01, 0xb3, 0x1d, 0x92, 0x70, 0x7b, 0x81, 0xd9, 0x22, 0x0d, 0xbf, 0xc7, 0x03, 0x76, - 0x42, 0x12, 0x3e, 0xc5, 0x6c, 0x61, 0xbe, 0x87, 0x7e, 0xb9, 0x5e, 0x57, 0xb9, 0x41, 0xd0, 0x14, - 0x66, 0x52, 0x17, 0xf2, 0x77, 0xe5, 0x8a, 0xd6, 0xab, 0x57, 0x64, 0x86, 0xd0, 0x2b, 0x95, 0xe5, - 0xea, 0x27, 0xd1, 0x95, 0xe3, 0x9a, 0x19, 0x6b, 0xbb, 0xeb, 0x6f, 0x74, 0x2b, 0x23, 0xd1, 0x3e, - 0x74, 0x43, 0xe6, 0xd9, 0xfc, 0x29, 0xdd, 0x0d, 0x86, 0xc5, 0xcc, 0x16, 0x59, 0x9c, 0x33, 0xef, - 0xf2, 0x29, 0x26, 0x56, 0x27, 0x54, 0x3f, 0xcc, 0x08, 0x7a, 0xa5, 0xc7, 0x62, 0x85, 0xbb, 0xf2, - 0x79, 0xd7, 0x6a, 0x25, 0xf5, 0x61, 0x0e, 0x1f, 0x01, 0x8a, 0x77, 0x60, 0x85, 0xbf, 0x5f, 0x40, - 0x33, 0xf5, 0xb5, 0xbc, 0x4a, 0x9a, 0x3f, 0xc8, 0x73, 0xa0, 0x3c, 0xab, 0x77, 0xee, 0x47, 0x4f, - 0xec, 0xd7, 0xea, 0x1e, 0xb3, 0xd5, 0xe6, 0x97, 0xd5, 0x3d, 0xab, 0x77, 0xb8, 0x91, 0xa3, 0x15, - 0x3b, 0x5f, 0xbc, 0xcc, 0x2b, 0xe8, 0xa4, 0x3c, 0xf4, 0x0a, 0x3a, 0x8c, 0xdc, 0xd9, 0xf4, 0x3e, - 0x4c, 0x8f, 0xd9, 0x66, 0xe4, 0xee, 0xec, 0x3e, 0x14, 0x55, 0x55, 0xba, 0x0d, 0x95, 0x8f, 0x9f, - 0x43, 0x3f, 0x1d, 0x40, 0x76, 0x5a, 0x59, 0xeb, 0xa2, 0x66, 0x53, 0x9e, 0x38, 0x8c, 0xf9, 0x37, - 0x18, 0x9e, 0x2b, 0x32, 0xf3, 0xf0, 0x19, 0x6c, 0x38, 0x51, 0x10, 0x10, 0x87, 0xfb, 0x11, 0xb5, - 0x29, 0x0e, 0x55, 0x42, 0x74, 0x6b, 0x58, 0xb0, 0xcf, 0x70, 0x48, 0x6a, 0xd6, 0xd7, 0xea, 0xd6, - 0xff, 0xad, 0x41, 0xbf, 0xbc, 0x49, 0xa1, 0x7d, 0x80, 0x30, 0x5f, 0x78, 0xd2, 0xb8, 0x87, 0xd5, - 0x55, 0xc8, 0x2a, 0x69, 0x7c, 0xf0, 0x78, 0x2a, 0xb7, 0x70, 0xb3, 0xda, 0xc2, 0xe6, 0x3f, 0x35, - 0xd8, 0xac, 0x3d, 0x49, 0xab, 0x9a, 0xf4, 0x43, 0x1d, 0xbf, 0x86, 0xa1, 0xcf, 0x6c, 0x97, 0x38, - 0x01, 0x4e, 0xb0, 0x48, 0x91, 0x2c, 0x89, 0xae, 0x35, 0xf0, 0xd9, 0xb8, 0x60, 0x9a, 0xbf, 0x83, - 0x6e, 0x86, 0x16, 0x57, 0xe9, 0x53, 0xa7, 0x7c, 0x95, 0x3e, 0x75, 0xc4, 0x55, 0x96, 0xee, 0x78, - 0xad, 0x7c, 0xc7, 0xe6, 0x0d, 0x6c, 0xd6, 0x96, 0x4c, 0xf4, 0x0d, 0x8c, 0x18, 0x09, 0x6e, 0xe4, - 0x76, 0x91, 0x84, 0xca, 0xb7, 0x56, 0x3d, 0x70, 0xde, 0x26, 0x1b, 0x42, 0x73, 0x56, 0x28, 0x8a, - 0x9a, 0x17, 0xaf, 0x25, 0x4d, 0x2f, 0x4f, 0x11, 0xe6, 0x35, 0xa0, 0xfa, 0x5a, 0x8a, 0x3e, 0x85, - 0x96, 0xdc, 0x82, 0x57, 0x8e, 0x6a, 0x25, 0x96, 0xbd, 0x4a, 0xb0, 0xfb, 0x3d, 0xbd, 0x4a, 0xb0, - 0x6b, 0xfe, 0x19, 0xda, 0xca, 0x87, 0xb8, 0x33, 0x52, 0xf9, 0x4c, 0xb0, 0x72, 0xfa, 0x7b, 0xe7, - 0xcc, 0xf2, 0xa7, 0xc8, 0xec, 0x40, 0x4b, 0x6e, 0x89, 0xe6, 0x5f, 0x00, 0xd5, 0x77, 0x21, 0x31, - 0xc8, 0x19, 0xc7, 0x09, 0xb7, 0xab, 0x6d, 0xd4, 0x93, 0xcc, 0x0b, 0xd5, 0x4b, 0x9f, 0x40, 0x8f, - 0x50, 0xd7, 0xae, 0x5e, 0x82, 0x4e, 0xa8, 0xab, 0xe4, 0xe6, 0x31, 0x6c, 0x2d, 0xd9, 0x90, 0xd0, - 0x1e, 0x74, 0xd3, 0x8e, 0xcd, 0x9e, 0xb3, 0x5a, 0x4b, 0xe7, 0x0a, 0xe6, 0x29, 0x6c, 0x2f, 0xdb, - 0x3a, 0xd0, 0x41, 0x31, 0x6f, 0x94, 0x8d, 0x7c, 0xab, 0x4d, 0x15, 0xd5, 0xb4, 0xca, 0xc7, 0x90, - 0xf9, 0x5f, 0x0d, 0x06, 0x15, 0x11, 0xda, 0x82, 0x16, 0x7f, 0xcc, 0x2a, 0x5a, 0xb7, 0x9a, 0xfc, - 0x71, 0x26, 0x3f, 0xde, 0x44, 0x2f, 0xb3, 0x18, 0x3b, 0xea, 0xe3, 0x4d, 0xb7, 0x0a, 0x06, 0xfa, - 0x04, 0xa0, 0xe8, 0x6e, 0x99, 0x4f, 0xdd, 0x2a, 0x71, 0xd0, 0x47, 0xa0, 0x5f, 0x07, 0x91, 0x73, - 0x2b, 0x72, 0x22, 0x1b, 0xab, 0x69, 0x75, 0x25, 0xe3, 0x82, 0xdc, 0xa1, 0x5d, 0xe8, 0x8b, 0x54, - 0xf9, 0xd4, 0x96, 0x2c, 0xf9, 0x29, 0xd5, 0xb4, 0x80, 0x91, 0xbb, 0x19, 0x3d, 0x16, 0x1c, 0xf3, - 0x3b, 0x78, 0xb1, 0x74, 0x45, 0x42, 0x87, 0xb5, 0x0d, 0xe0, 0xe5, 0xb3, 0x70, 0x27, 0x4a, 0x5c, - 0xda, 0x03, 0xae, 0x60, 0x58, 0x95, 0xa1, 0x2f, 0xa0, 0xad, 0xb2, 0x91, 0x16, 0xfe, 0x8a, 0x94, - 0xa5, 0x4a, 0xe5, 0x2f, 0x5c, 0x55, 0xf6, 0xf9, 0xa0, 0xfd, 0x53, 0x6e, 0x3a, 0x9b, 0x86, 0xaf, - 0x61, 0x83, 0x3f, 0xda, 0x95, 0xf0, 0x54, 0xc1, 0xf4, 0xf9, 0xe3, 0x45, 0x1e, 0x60, 0xd5, 0x64, - 0xf9, 0xa3, 0xd9, 0xfc, 0x0c, 0x36, 0x9e, 0x6d, 0xa4, 0xa2, 0xe9, 0x48, 0x92, 0x44, 0x49, 0x7a, - 0x3f, 0x8a, 0xf8, 0xd5, 0xef, 0xa1, 0x57, 0x7a, 0x36, 0x9e, 0xef, 0x89, 0x03, 0xd0, 0x8f, 0xdf, - 0xbe, 0x3b, 0xf9, 0xce, 0x9e, 0x5f, 0x9c, 0x8e, 0x34, 0xb1, 0x0e, 0xce, 0xc6, 0x93, 0xb3, 0xcb, - 0xd9, 0xe5, 0x95, 0xe4, 0xac, 0x1d, 0xfe, 0x1d, 0xda, 0xea, 0xd9, 0x46, 0x5f, 0x43, 0x5f, 0xfd, - 0xba, 0xe0, 0x09, 0xc1, 0x21, 0xaa, 0x75, 0xe0, 0x4e, 0x8d, 0x63, 0x36, 0xde, 0x68, 0x5f, 0x6a, - 0xe8, 0x53, 0x68, 0x9e, 0xfb, 0xd4, 0x43, 0xd5, 0xcf, 0xad, 0x9d, 0x2a, 0x69, 0x36, 0x8e, 0xbf, - 0xf8, 0xeb, 0x9e, 0xe7, 0xf3, 0xc5, 0xfd, 0xf5, 0xbe, 0x13, 0x85, 0x07, 0x8b, 0xa7, 0x98, 0x24, - 0x32, 0xba, 0xe4, 0xe0, 0x06, 0x5f, 0x27, 0xbe, 0x73, 0x20, 0xff, 0xe9, 0x60, 0x07, 0x0a, 0x76, - 0xdd, 0x96, 0xe4, 0x57, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xe6, 0xef, 0x9c, 0x10, 0x11, - 0x00, 0x00, + // 1710 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x58, 0x7b, 0x6f, 0xe4, 0x48, + 0x11, 0x1f, 0x27, 0xf3, 0x72, 0xcd, 0x23, 0x93, 0x4e, 0x76, 0xd7, 0xe4, 0x8e, 0x23, 0x18, 0xf6, + 0x6e, 0x21, 0x77, 0xc9, 0x91, 0x03, 0x71, 0xd2, 0x01, 0xa7, 0x24, 0x33, 0x64, 0x46, 0xb7, 0x93, + 0x0d, 0x4e, 0x56, 0x10, 0x84, 0x64, 0x75, 0xec, 0x8e, 0xc7, 0xc4, 0x6e, 0x3b, 0xee, 0xce, 0x92, + 0xfc, 0x89, 0xf8, 0x8f, 0x6f, 0xc1, 0x67, 0x41, 0xe2, 0x73, 0xa1, 0xee, 0xf6, 0x33, 0x9e, 0x39, + 0x69, 0x57, 0xba, 0xff, 0xa6, 0x1e, 0xbf, 0xaa, 0xae, 0xea, 0xaa, 0xea, 0xf2, 0xc0, 0xb6, 0x17, + 0x31, 0xe6, 0xc7, 0x07, 0x21, 0x61, 0x0c, 0x7b, 0x64, 0x3f, 0x4e, 0x22, 0x1e, 0xa1, 0xb6, 0xe2, + 0x9a, 0xff, 0xd2, 0xa0, 0x3b, 0xa1, 0xef, 0x48, 0x10, 0xc5, 0x04, 0x19, 0xd0, 0x89, 0xf1, 0x63, + 0x10, 0x61, 0xd7, 0xd0, 0x76, 0xb5, 0x57, 0x7d, 0x2b, 0x23, 0xd1, 0xc7, 0xa0, 0x33, 0xdf, 0xa3, + 0x98, 0xdf, 0x27, 0xc4, 0x58, 0x93, 0xb2, 0x82, 0x81, 0xbe, 0x85, 0x0d, 0x46, 0x9c, 0x84, 0x70, + 0x9b, 0xa4, 0xa6, 0x8c, 0xf5, 0x5d, 0xed, 0x55, 0xef, 0xf0, 0xf9, 0xbe, 0x72, 0xb3, 0x7f, 0x21, + 0xc5, 0x99, 0x23, 0x6b, 0xc8, 0x2a, 0xb4, 0x39, 0x85, 0x61, 0x55, 0xe3, 0x43, 0x8f, 0x62, 0x1e, + 0x41, 0x5b, 0x59, 0x42, 0x9f, 0xc3, 0xc8, 0xa7, 0x9c, 0x24, 0x14, 0x07, 0x13, 0xea, 0xc6, 0x91, + 0x4f, 0xb9, 0x34, 0xa5, 0x4f, 0x1b, 0x56, 0x4d, 0x72, 0xac, 0x43, 0xc7, 0x89, 0x28, 0x27, 0x94, + 0x9b, 0xff, 0x03, 0x18, 0x9c, 0xca, 0x63, 0xcf, 0x55, 0xca, 0xd0, 0x36, 0xb4, 0x68, 0x44, 0x1d, + 0x22, 0xf1, 0x4d, 0x4b, 0x11, 0xe2, 0x88, 0xce, 0x02, 0x53, 0x4a, 0x82, 0xf4, 0x18, 0x19, 0x89, + 0xf6, 0x60, 0x9d, 0x63, 0x4f, 0xe6, 0x60, 0x78, 0xf8, 0xa3, 0x2c, 0x07, 0x15, 0x9b, 0xfb, 0x97, + 0xd8, 0xb3, 0x84, 0x16, 0xfa, 0x0a, 0x74, 0x1c, 0xf8, 0xef, 0x88, 0x1d, 0x32, 0xcf, 0x68, 0xc9, + 0xb4, 0x6d, 0x67, 0x90, 0x23, 0x21, 0x48, 0x11, 0xd3, 0x86, 0xd5, 0x95, 0x8a, 0x73, 0xe6, 0xa1, + 0x5f, 0x43, 0x27, 0x24, 0xa1, 0x9d, 0x90, 0x3b, 0xa3, 0x2d, 0x21, 0xb9, 0x97, 0x39, 0x09, 0xaf, + 0x49, 0xc2, 0x16, 0x7e, 0x6c, 0x91, 0xbb, 0x7b, 0xc2, 0xf8, 0xb4, 0x61, 0xb5, 0x43, 0x12, 0x5a, + 0xe4, 0x0e, 0xfd, 0x26, 0x43, 0x31, 0xa3, 0x23, 0x51, 0x3b, 0xcb, 0x50, 0x2c, 0x8e, 0x28, 0x23, + 0x39, 0x8c, 0xa1, 0x2f, 0xa1, 0xeb, 0x62, 0x8e, 0xe5, 0x01, 0xbb, 0x12, 0xb7, 0x95, 0xe1, 0xc6, + 0x98, 0xe3, 0xe2, 0x7c, 0x1d, 0xa1, 0x26, 0x8e, 0xb7, 0x07, 0xad, 0x05, 0x09, 0x82, 0xc8, 0xd0, + 0xab, 0xea, 0x2a, 0x05, 0x53, 0x21, 0x9a, 0x36, 0x2c, 0xa5, 0x83, 0x0e, 0x52, 0xf3, 0xae, 0xef, + 0x19, 0x20, 0xf5, 0x51, 0xd9, 0xfc, 0xd8, 0xf7, 0x54, 0x14, 0xd2, 0xfa, 0xd8, 0xf7, 0xf2, 0xf3, + 0x88, 0xe8, 0x7b, 0xf5, 0xf3, 0x14, 0x71, 0x4b, 0x84, 0x0a, 0xbc, 0x27, 0x11, 0xf7, 0xb1, 0x8b, + 0x39, 0x31, 0xfa, 0x75, 0x2f, 0x6f, 0xa5, 0x64, 0xda, 0xb0, 0xc0, 0xcd, 0x29, 0xf4, 0x12, 0x5a, + 0x24, 0x8c, 0xf9, 0xa3, 0x31, 0x90, 0x80, 0x41, 0x06, 0x98, 0x08, 0xa6, 0x08, 0x40, 0x4a, 0xd1, + 0x1e, 0x34, 0x9d, 0x88, 0x52, 0x63, 0x28, 0xb5, 0x9e, 0x65, 0x5a, 0x27, 0x11, 0xa5, 0x13, 0xc6, + 0xf1, 0x75, 0xe0, 0xb3, 0xc5, 0xb4, 0x61, 0x49, 0x25, 0x74, 0x08, 0xc0, 0x38, 0xe6, 0xc4, 0xf6, + 0xe9, 0x4d, 0x64, 0x6c, 0x48, 0xc8, 0x66, 0xde, 0x26, 0x42, 0x32, 0xa3, 0x37, 0x22, 0x3b, 0x3a, + 0xcb, 0x08, 0x74, 0x0c, 0x43, 0x85, 0x61, 0x14, 0xc7, 0x6c, 0x11, 0x71, 0x63, 0x54, 0xbd, 0xf4, + 0x1c, 0x77, 0x91, 0x2a, 0x4c, 0x1b, 0xd6, 0x40, 0x42, 0x32, 0x06, 0x9a, 0xc3, 0x56, 0xe1, 0xd7, + 0x8e, 0xef, 0x83, 0x40, 0xe6, 0x6f, 0x53, 0x1a, 0xfa, 0xb8, 0x66, 0xe8, 0xfc, 0x3e, 0x08, 0x8a, + 0x44, 0x8e, 0xd8, 0x13, 0x3e, 0x3a, 0x02, 0x65, 0x5f, 0x18, 0x11, 0x4a, 0x06, 0xaa, 0x16, 0x94, + 0x45, 0xc2, 0x88, 0x13, 0x69, 0xae, 0x30, 0xd3, 0x67, 0x25, 0x1a, 0x8d, 0xb3, 0xa8, 0x92, 0xb4, + 0xe4, 0x8c, 0x2d, 0x69, 0xe3, 0xa3, 0xa5, 0x36, 0xf2, 0xaa, 0x1c, 0xb0, 0x32, 0x43, 0xe4, 0x26, + 0x20, 0xd8, 0x55, 0xc5, 0x2b, 0x4b, 0x74, 0xbb, 0x9a, 0x9b, 0xd7, 0xb9, 0xb4, 0x28, 0xd4, 0x41, + 0x01, 0x11, 0xe5, 0xfa, 0x0d, 0x0c, 0x62, 0x42, 0x12, 0xdb, 0x77, 0x09, 0xe5, 0x3e, 0x7f, 0x34, + 0x9e, 0x55, 0xdb, 0xf0, 0x9c, 0x90, 0x64, 0x96, 0xca, 0x44, 0x18, 0x71, 0x89, 0x16, 0xcd, 0x8e, + 0x9d, 0x5b, 0xe3, 0xb9, 0x84, 0xbc, 0xc8, 0x3b, 0xd7, 0xb9, 0xa5, 0xd1, 0x3f, 0x02, 0xe2, 0x7a, + 0x24, 0x24, 0x54, 0x04, 0x2f, 0xb4, 0xd0, 0x1f, 0x00, 0xe2, 0xc4, 0x7f, 0xa7, 0xb2, 0x60, 0xbc, + 0xa8, 0x26, 0x5f, 0xc5, 0x7b, 0xfe, 0x8e, 0x57, 0xab, 0xb8, 0x84, 0x40, 0xdf, 0x96, 0xf0, 0xcc, + 0x30, 0x24, 0xfe, 0xc7, 0x2b, 0xf0, 0x79, 0xc6, 0x4a, 0x10, 0xd3, 0x86, 0xf5, 0x4b, 0xec, 0xa1, + 0x01, 0xe8, 0x6f, 0xcf, 0xc6, 0x93, 0x3f, 0xce, 0xce, 0x26, 0xe3, 0x51, 0x03, 0xe9, 0xd0, 0x9a, + 0xcc, 0xcf, 0x2f, 0xaf, 0x46, 0x1a, 0xea, 0x43, 0xf7, 0x8d, 0x75, 0x6a, 0xbf, 0x39, 0x7b, 0x7d, + 0x35, 0x5a, 0x13, 0x7a, 0x27, 0xd3, 0xa3, 0x33, 0x45, 0xae, 0xa3, 0x11, 0xf4, 0x25, 0x79, 0x74, + 0x36, 0xb6, 0xdf, 0x58, 0xa7, 0xa3, 0x26, 0xda, 0x80, 0x9e, 0x52, 0xb0, 0x24, 0xa3, 0x55, 0x1e, + 0xa4, 0xff, 0xd5, 0x40, 0xcf, 0x0b, 0x0a, 0xed, 0x40, 0x37, 0x24, 0x1c, 0x8b, 0xf6, 0x4a, 0x47, + 0x7a, 0x4e, 0xa3, 0x7d, 0xd0, 0xb9, 0x1f, 0x12, 0xc6, 0x71, 0x18, 0xcb, 0x61, 0xda, 0x3b, 0x1c, + 0x95, 0x93, 0x7f, 0xe9, 0x87, 0xc4, 0x2a, 0x54, 0xd0, 0x33, 0x68, 0xc7, 0xb7, 0xbe, 0xed, 0xbb, + 0x72, 0xc6, 0xf6, 0xad, 0x56, 0x7c, 0xeb, 0xcf, 0x5c, 0xf4, 0x13, 0xe8, 0xa5, 0x23, 0xd8, 0x9e, + 0x1f, 0x9d, 0x18, 0x4d, 0x29, 0x83, 0x94, 0x35, 0x3f, 0x3a, 0x11, 0xcd, 0x17, 0x27, 0x51, 0x4c, + 0x12, 0xee, 0x13, 0x96, 0x0e, 0xdb, 0x7c, 0x0c, 0x9c, 0xe7, 0x12, 0xab, 0xa4, 0x65, 0xfe, 0x0a, + 0xa0, 0x90, 0xa0, 0x9f, 0xc1, 0x40, 0x5e, 0x6a, 0x62, 0x2f, 0x88, 0xef, 0x2d, 0x78, 0xfa, 0x24, + 0xf4, 0x15, 0x73, 0x2a, 0x79, 0xe6, 0x11, 0x6c, 0xd6, 0x3a, 0x12, 0x7d, 0x0e, 0x5d, 0x12, 0xc8, + 0x62, 0x60, 0x86, 0xb6, 0xbb, 0x5e, 0x0e, 0x31, 0x7f, 0x17, 0x73, 0x0d, 0xf3, 0xb7, 0xb0, 0xbd, + 0xac, 0x17, 0x9f, 0x86, 0xa8, 0x3d, 0x0d, 0xd1, 0xbc, 0x81, 0x41, 0x65, 0xf0, 0x94, 0x72, 0xa5, + 0x95, 0x73, 0xb5, 0x03, 0xdd, 0xbc, 0xdc, 0xd5, 0xf3, 0x95, 0xd3, 0xc8, 0x84, 0x01, 0x0f, 0x98, + 0xed, 0x90, 0x84, 0xdb, 0x0b, 0xcc, 0x16, 0x69, 0x96, 0x7b, 0x3c, 0x60, 0x27, 0x24, 0xe1, 0x53, + 0xcc, 0x16, 0xe6, 0x5b, 0xe8, 0x97, 0xdb, 0x62, 0x95, 0x1b, 0x04, 0x4d, 0x61, 0x26, 0x75, 0x21, + 0x7f, 0x57, 0x2a, 0x61, 0xbd, 0x5a, 0x09, 0x66, 0x08, 0xbd, 0x52, 0xf5, 0xaf, 0x7e, 0x79, 0x5d, + 0xf9, 0x2a, 0x30, 0x63, 0x6d, 0x77, 0xfd, 0x95, 0x6e, 0x65, 0x24, 0xda, 0x87, 0x6e, 0xc8, 0x3c, + 0x9b, 0x3f, 0xa6, 0x2b, 0xc8, 0xb0, 0x78, 0x1a, 0x44, 0x16, 0xe7, 0xcc, 0xbb, 0x7c, 0x8c, 0x89, + 0xd5, 0x09, 0xd5, 0x0f, 0x33, 0x82, 0x5e, 0xe9, 0x4d, 0x5a, 0xe1, 0xae, 0x7c, 0xde, 0xb5, 0x5a, + 0xe5, 0xbe, 0x9f, 0xc3, 0x07, 0x80, 0xe2, 0xb9, 0x59, 0xe1, 0xef, 0xe7, 0xd0, 0x4c, 0x7d, 0x2d, + 0xaf, 0x92, 0xe6, 0x07, 0x79, 0x0e, 0x94, 0x67, 0xf5, 0x9c, 0xfe, 0xe0, 0x89, 0xfd, 0x5a, 0xdd, + 0x63, 0xb6, 0x41, 0xfd, 0xa2, 0xba, 0xce, 0xf5, 0x0e, 0x37, 0x72, 0xb4, 0x62, 0xe7, 0xfb, 0x9d, + 0x79, 0x05, 0x9d, 0x94, 0x87, 0x5e, 0x40, 0x87, 0x91, 0x3b, 0x9b, 0xde, 0x87, 0xe9, 0x31, 0xdb, + 0x8c, 0xdc, 0x9d, 0xdd, 0x87, 0xa2, 0xaa, 0x4a, 0xb7, 0xa1, 0xf2, 0xf1, 0x53, 0xe8, 0xa7, 0x73, + 0xce, 0x4e, 0x2b, 0x6b, 0x5d, 0xd4, 0x6c, 0xca, 0x13, 0x87, 0x31, 0xff, 0x06, 0xc3, 0x73, 0x45, + 0x66, 0x1e, 0x3e, 0x83, 0x0d, 0x27, 0x0a, 0x02, 0xe2, 0x70, 0x3f, 0xa2, 0x36, 0xc5, 0xa1, 0x4a, + 0x88, 0x6e, 0x0d, 0x0b, 0xf6, 0x19, 0x0e, 0x49, 0xcd, 0xfa, 0x5a, 0xdd, 0xfa, 0xbf, 0x35, 0xe8, + 0x97, 0x17, 0x36, 0xb4, 0x0f, 0x10, 0xe6, 0x7b, 0x55, 0x1a, 0xf7, 0xb0, 0xba, 0x71, 0x59, 0x25, + 0x8d, 0xf7, 0x9e, 0x82, 0xe5, 0x16, 0x6e, 0x56, 0x5b, 0xd8, 0xfc, 0xa7, 0x06, 0x9b, 0xb5, 0x97, + 0x6f, 0x55, 0x93, 0xbe, 0xaf, 0xe3, 0x97, 0x30, 0xf4, 0x99, 0xed, 0x12, 0x27, 0xc0, 0x09, 0x16, + 0x29, 0x92, 0x25, 0xd1, 0xb5, 0x06, 0x3e, 0x1b, 0x17, 0x4c, 0xf3, 0x77, 0xd0, 0xcd, 0xd0, 0xe2, + 0x2a, 0x7d, 0xea, 0x94, 0xaf, 0xd2, 0xa7, 0x8e, 0xb8, 0xca, 0xd2, 0x1d, 0xaf, 0x95, 0xef, 0xd8, + 0xbc, 0x81, 0xcd, 0xda, 0x2e, 0x8b, 0xbe, 0x81, 0x11, 0x23, 0xc1, 0x8d, 0x5c, 0x62, 0x92, 0x50, + 0xf9, 0xd6, 0xaa, 0x07, 0xce, 0xdb, 0x64, 0x43, 0x68, 0xce, 0x0a, 0x45, 0x51, 0xf3, 0xe2, 0x51, + 0xa6, 0xe9, 0xe5, 0x29, 0xc2, 0xbc, 0x06, 0x54, 0xdf, 0x7e, 0xd1, 0xa7, 0xd0, 0x92, 0xcb, 0xf6, + 0xca, 0x51, 0xad, 0xc4, 0xb2, 0x57, 0x09, 0x76, 0xbf, 0xa7, 0x57, 0x09, 0x76, 0xcd, 0x3f, 0x43, + 0x5b, 0xf9, 0x10, 0x77, 0x46, 0x2a, 0x5f, 0x23, 0x56, 0x4e, 0x7f, 0xef, 0x9c, 0x59, 0xfe, 0xe2, + 0x99, 0x1d, 0x68, 0xc9, 0x65, 0xd4, 0xfc, 0x0b, 0xa0, 0xfa, 0xca, 0x25, 0x06, 0x39, 0xe3, 0x38, + 0xe1, 0x76, 0xb5, 0x8d, 0x7a, 0x92, 0x79, 0xa1, 0x7a, 0xe9, 0x13, 0xe8, 0x11, 0xea, 0xda, 0xd5, + 0x4b, 0xd0, 0x09, 0x75, 0x95, 0xdc, 0x3c, 0x86, 0xad, 0x25, 0x8b, 0x18, 0xda, 0x83, 0x6e, 0xda, + 0xb1, 0xd9, 0x73, 0x56, 0x6b, 0xe9, 0x5c, 0xc1, 0x3c, 0x85, 0xed, 0x65, 0xcb, 0x0d, 0x3a, 0x28, + 0xe6, 0x8d, 0xb2, 0x91, 0x2f, 0xcf, 0xa9, 0xa2, 0x9a, 0x56, 0xf9, 0x18, 0x32, 0xff, 0xa3, 0xc1, + 0xa0, 0x22, 0x42, 0x5b, 0xd0, 0xe2, 0x0f, 0x59, 0x45, 0xeb, 0x56, 0x93, 0x3f, 0xcc, 0xe4, 0x37, + 0xa2, 0xe8, 0x65, 0x16, 0x63, 0x47, 0x7d, 0x23, 0xea, 0x56, 0xc1, 0x40, 0x9f, 0x00, 0x14, 0xdd, + 0x2d, 0xf3, 0xa9, 0x5b, 0x25, 0x0e, 0xfa, 0x08, 0xf4, 0xeb, 0x20, 0x72, 0x6e, 0x45, 0x4e, 0x64, + 0x63, 0x35, 0xad, 0xae, 0x64, 0x5c, 0x90, 0x3b, 0xb4, 0x0b, 0x7d, 0x91, 0x2a, 0x9f, 0xda, 0x92, + 0x25, 0x97, 0x88, 0xa6, 0x05, 0x8c, 0xdc, 0xcd, 0xe8, 0xb1, 0xe0, 0x98, 0xdf, 0xc1, 0xb3, 0xa5, + 0x9b, 0x18, 0x3a, 0xac, 0x6d, 0x00, 0xcf, 0x9f, 0x84, 0x3b, 0x51, 0xe2, 0xd2, 0x1e, 0x70, 0x05, + 0xc3, 0xaa, 0x0c, 0x7d, 0x01, 0x6d, 0x95, 0x8d, 0xb4, 0xf0, 0x57, 0xa4, 0x2c, 0x55, 0x2a, 0x7f, + 0x48, 0xab, 0xb2, 0xcf, 0x07, 0xed, 0x9f, 0x72, 0xd3, 0xd9, 0x34, 0x7c, 0x09, 0x1b, 0xfc, 0xc1, + 0xae, 0x84, 0x97, 0xae, 0x37, 0xfc, 0xe1, 0x22, 0x0f, 0xb0, 0x6a, 0xb2, 0xfc, 0x6d, 0x6e, 0x7e, + 0x06, 0x1b, 0x4f, 0x16, 0x5f, 0xd1, 0x74, 0x24, 0x49, 0xa2, 0x24, 0xbd, 0x1f, 0x45, 0xfc, 0xf2, + 0xf7, 0xd0, 0x2b, 0x3d, 0x1b, 0x4f, 0xd7, 0xd1, 0x01, 0xe8, 0xc7, 0xaf, 0xdf, 0x9c, 0x7c, 0x67, + 0xcf, 0x2f, 0x4e, 0x47, 0x9a, 0xd8, 0x3a, 0x67, 0xe3, 0xc9, 0xd9, 0xe5, 0xec, 0xf2, 0x4a, 0x72, + 0xd6, 0x0e, 0xff, 0x0e, 0x6d, 0xf5, 0x6c, 0xa3, 0xaf, 0xa1, 0xaf, 0x7e, 0x5d, 0xf0, 0x84, 0xe0, + 0x10, 0xd5, 0x3a, 0x70, 0xa7, 0xc6, 0x31, 0x1b, 0xaf, 0xb4, 0x2f, 0x35, 0xf4, 0x29, 0x34, 0xcf, + 0x7d, 0xea, 0xa1, 0xea, 0x57, 0xdd, 0x4e, 0x95, 0x34, 0x1b, 0xc7, 0x5f, 0xfc, 0x75, 0xcf, 0xf3, + 0xf9, 0xe2, 0xfe, 0x7a, 0xdf, 0x89, 0xc2, 0x83, 0xc5, 0x63, 0x4c, 0x12, 0xb5, 0xec, 0x1d, 0xdc, + 0xe0, 0xeb, 0xc4, 0x77, 0x0e, 0xe4, 0x1f, 0x2a, 0xec, 0x40, 0xc1, 0xae, 0xdb, 0x92, 0xfc, 0xea, + 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x17, 0xa4, 0x06, 0xf1, 0x77, 0x11, 0x00, 0x00, } diff --git a/protos/gossip/message.proto b/protos/gossip/message.proto index 6cf49b9aa74..1721566cfe2 100644 --- a/protos/gossip/message.proto +++ b/protos/gossip/message.proto @@ -139,6 +139,12 @@ message StateInfo { // that the peer that sent this message knows // the name of the channel. bytes channel_MAC = 4; + + Properties properties = 5; +} + +message Properties { + uint64 ledger_height = 1; } // StateInfoSnapshot is an aggregation of StateInfo messages