mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
75dec0d79c
* sync all third party proto definitions * update cosmos swagger for new imported third party protos
21 lines
402 B
Protocol Buffer
21 lines
402 B
Protocol Buffer
syntax = "proto3";
|
|
package tendermint.p2p;
|
|
|
|
option go_package = "github.com/tendermint/tendermint/proto/tendermint/p2p";
|
|
|
|
import "tendermint/p2p/types.proto";
|
|
import "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;
|
|
}
|
|
}
|