mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
15 lines
313 B
Protocol Buffer
15 lines
313 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;
|
|
}
|