You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
syntax = "proto3";
|
|
package tendermint.proto.p2p;
|
|
|
|
option go_package = "github.com/tendermint/tendermint/proto/p2p";
|
|
|
|
import "proto/p2p/types.proto";
|
|
import "third_party/proto/gogoproto/gogo.proto";
|
|
|
|
message PexRequest {}
|
|
|
|
message PexAddrs {
|
|
repeated NetAddress addrs = 1 [(gogoproto.nullable) = false];
|
|
}
|
|
|
|
message Message {
|
|
oneof sum {
|
|
PexRequest pex_request = 1;
|
|
PexAddrs pex_addrs = 2;
|
|
}
|
|
}
|