mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
11 lines
288 B
Protocol Buffer
11 lines
288 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package circuit.pb;
|
|
|
|
message ReservationVoucher {
|
|
// These fields are marked optional for backwards compatibility with proto2.
|
|
// Users should make sure to always set these.
|
|
optional bytes relay = 1;
|
|
optional bytes peer = 2;
|
|
optional uint64 expiration = 3;
|
|
} |