prysm-pulse/proto/common/messages.proto
2019-05-01 12:14:21 -07:00

15 lines
310 B
Protocol Buffer

syntax = "proto3";
package ethereum.common;
// Uint32List represents a message that can be used to form two dimensional
// arrays of uint32s.
//
// Example:
// message Example {
// repeated ethereum.common.Uint32List = 1; // Type of [[uint32]]
// }
message Uint32List {
repeated uint32 list = 1;
}