github.com/vipernet-xyz/tm@v0.34.24/test/loadtime/payload/payload.proto (about)

     1  syntax = "proto3";
     2  package loadtime.payload;
     3  
     4  option go_package = "github.com/vipernet-xyz/tm/test/loadtime/payload";
     5  
     6  import "google/protobuf/timestamp.proto";
     7  
     8  // Payload is the structure of the loadtime transaction. Proto has a compact
     9  // encoded representation, making it ideal for the loadtime usecase which aims to
    10  // keep the generated transactions small.
    11  message Payload {
    12    uint64                    connections = 1;
    13    uint64                    rate        = 2;
    14    uint64                    size        = 3;
    15    google.protobuf.Timestamp time        = 4;
    16    bytes                     id          = 5;
    17    bytes                     padding     = 6;
    18  }