Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
18 lines
655 B
Protocol Buffer
18 lines
655 B
Protocol Buffer
syntax = "proto3";
|
|
package loadtime.payload;
|
|
|
|
option go_package = "github.com/cometbft/cometbft/test/loadtime/payload";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
// Payload is the structure of the loadtime transaction. Proto has a compact
|
|
// encoded representation, making it ideal for the loadtime usecase which aims to
|
|
// keep the generated transactions small.
|
|
message Payload {
|
|
uint64 connections = 1;
|
|
uint64 rate = 2;
|
|
uint64 size = 3;
|
|
google.protobuf.Timestamp time = 4;
|
|
bytes id = 5;
|
|
bytes padding = 6;
|
|
}
|