mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-06 02:52:19 +00:00
2fd96a0b1c
Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
14 lines
326 B
Protocol Buffer
14 lines
326 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package lightrpc;
|
|
|
|
message MetadataV1 {
|
|
uint64 SeqNumber = 1 [json_name="seq_number"];
|
|
uint64 Attnets = 2 [json_name="attnets"];
|
|
}
|
|
|
|
message MetadataV2 {
|
|
uint64 SeqNumber = 1 [json_name="seq_number"];
|
|
uint64 Attnets = 2 [json_name="attnets"];
|
|
uint64 Syncnets = 3[json_name="syncnets"];
|
|
} |