laconicd/third_party/proto/tendermint/libs/bits/types.proto

10 lines
213 B
Protocol Buffer
Raw Normal View History

2021-04-17 10:00:07 +00:00
syntax = "proto3";
package tendermint.libs.bits;
option go_package = "github.com/tendermint/tendermint/proto/tendermint/libs/bits";
message BitArray {
2021-04-18 15:54:18 +00:00
int64 bits = 1;
2021-04-17 10:00:07 +00:00
repeated uint64 elems = 2;
}